mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 06:14:36 +00:00
10 lines
336 B
Haxe
10 lines
336 B
Haxe
package funkin.ui.story;
|
|
|
|
/**
|
|
* A script that can be tied to a Level, which persists across states.
|
|
* Create a scripted class that extends Level to use this.
|
|
* This allows you to customize how a specific level appears.
|
|
*/
|
|
@:hscriptClass
|
|
class ScriptedLevel extends funkin.ui.story.Level implements polymod.hscript.HScriptedClass {}
|