16 lines
269 B
C#
16 lines
269 B
C#
using Godot;
|
|
using WacK.Data.Chart;
|
|
|
|
namespace WacK.Things.TunnelObjects
|
|
{
|
|
public partial class THNoteHold : THNotePlay
|
|
{
|
|
public new NoteHold noteData;
|
|
|
|
public void Init(NoteHold noteData)
|
|
{
|
|
base.Init(noteData);
|
|
this.noteData = noteData;
|
|
}
|
|
}
|
|
} |