mirror of
https://github.com/ApfelTeeSaft/FunkinMP.git
synced 2026-08-28 19:19:09 +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 {}
|