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