mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-10 08:44:47 +00:00
15 lines
435 B
Haxe
15 lines
435 B
Haxe
|
package funkin.play.character;
|
||
|
|
||
|
import funkin.play.character.render.PackerCharacter;
|
||
|
import funkin.play.character.render.SparrowCharacter;
|
||
|
import funkin.modding.IHook;
|
||
|
|
||
|
@:hscriptClass
|
||
|
class ScriptedCharacter extends SparrowCharacter implements IHook {}
|
||
|
|
||
|
@:hscriptClass
|
||
|
class ScriptedSparrowCharacter extends SparrowCharacter implements IHook {}
|
||
|
|
||
|
@:hscriptClass
|
||
|
class ScriptedPackerCharacter extends PackerCharacter implements IHook {}
|