mirror of
https://github.com/ApfelTeeSaft/FunkinMP.git
synced 2026-08-27 11:43:31 +00:00
11 lines
292 B
Haxe
11 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 {}
|