mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-15 19:33:36 +00: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 {}
|