mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-30 03:25:47 -05:00
9 lines
304 B
Haxe
9 lines
304 B
Haxe
package funkin.play.notes.notekind;
|
|
|
|
/**
|
|
* A script that can be tied to a NoteKind.
|
|
* Create a scripted class that extends NoteKind,
|
|
* then call `super('noteKind')` in the constructor to use this.
|
|
*/
|
|
@:hscriptClass
|
|
class ScriptedNoteKind extends NoteKind implements polymod.hscript.HScriptedClass {}
|