mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-29 19:15:55 -05:00
10 lines
304 B
Haxe
10 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 {}
|