mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 16:17:53 -05:00
14 lines
435 B
Haxe
14 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 {}
|