mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 16:17:53 -05: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);
|
||
|
}
|
||
|
}
|