mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 22:34:36 +00:00
24 lines
780 B
Haxe
24 lines
780 B
Haxe
package funkin.play.character;
|
|
|
|
import funkin.modding.IHook;
|
|
import funkin.play.character.MultiSparrowCharacter;
|
|
import funkin.play.character.PackerCharacter;
|
|
import funkin.play.character.SparrowCharacter;
|
|
|
|
/**
|
|
* Note: Making a scripted class extending BaseCharacter is not recommended.
|
|
* Do so ONLY if are handling all the character rendering yourself,
|
|
* and can't use one of the built-in render modes.
|
|
*/
|
|
@:hscriptClass
|
|
class ScriptedBaseCharacter extends BaseCharacter implements IHook {}
|
|
|
|
@:hscriptClass
|
|
class ScriptedSparrowCharacter extends SparrowCharacter implements IHook {}
|
|
|
|
@:hscriptClass
|
|
class ScriptedMultiSparrowCharacter extends MultiSparrowCharacter implements IHook {}
|
|
|
|
@:hscriptClass
|
|
class ScriptedPackerCharacter extends PackerCharacter implements IHook {}
|