mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 22:34:36 +00:00
10 lines
351 B
Haxe
10 lines
351 B
Haxe
package funkin.play.notes.notestyle;
|
|
|
|
/**
|
|
* A script that can be tied to a NoteStyle.
|
|
* Create a scripted class that extends NoteStyle to use this.
|
|
* This allows you to customize how a specific note style appears.
|
|
*/
|
|
@:hscriptClass
|
|
class ScriptedNoteStyle extends funkin.play.notes.notestyle.NoteStyle implements polymod.hscript.HScriptedClass {}
|