mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-10 00:34:40 +00:00
13 lines
352 B
Haxe
13 lines
352 B
Haxe
package funkin.noteStuff;
|
|
|
|
import funkin.noteStuff.NoteBasic.NoteType;
|
|
import funkin.play.Strumline.StrumlineStyle;
|
|
|
|
class NoteEvent extends Note
|
|
{
|
|
public function new(strumTime:Float = 0, noteData:NoteType, ?prevNote:Note, ?sustainNote:Bool = false, ?style:StrumlineStyle = NORMAL)
|
|
{
|
|
super(strumTime, noteData, prevNote, sustainNote, style);
|
|
}
|
|
}
|