mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 16:17:53 -05:00
10 lines
292 B
Haxe
10 lines
292 B
Haxe
package funkin.modding.module;
|
|
|
|
import polymod.hscript.HScriptedClass;
|
|
|
|
/**
|
|
* A script that can be tied to a Module, which persists across states.
|
|
* Create a scripted class that extends Module to use this.
|
|
*/
|
|
@:hscriptClass
|
|
class ScriptedModule extends Module implements HScriptedClass {}
|