mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 08:07:54 -05:00
10 lines
212 B
Haxe
10 lines
212 B
Haxe
package funkin.modding.base;
|
|
|
|
import flixel.FlxSprite;
|
|
import funkin.modding.IHook;
|
|
|
|
@:hscriptClass
|
|
class ScriptedFlxSprite extends FlxSprite implements IHook
|
|
{
|
|
// No body needed for this class, it's magic ;)
|
|
}
|