1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-20 01:00:53 +00:00
Funkin/source/funkin/modding/module/ScriptedModule.hx
2023-01-22 22:25:45 -05:00

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 {}