mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-09-01 03:15:53 +00:00
9 lines
240 B
Haxe
9 lines
240 B
Haxe
|
package funkin.modding.base;
|
||
|
|
||
|
/**
|
||
|
* A script that can be tied to an FlxObject.
|
||
|
* Create a scripted class that extends FlxObject to use this.
|
||
|
*/
|
||
|
@:hscriptClass
|
||
|
class ScriptedFlxObject extends flixel.FlxObject implements HScriptedClass {}
|