Funkin/source/funkin/play/notes/notekind/ScriptedNoteKind.hx

10 lines
304 B
Haxe
Raw Normal View History

2024-05-31 10:55:42 -04:00
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 {}