mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-08-31 19:04:55 +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 {}
|