2022-03-17 05:40:08 +00:00
|
|
|
package funkin.play.character;
|
|
|
|
|
2022-07-22 20:11:18 +00:00
|
|
|
import funkin.modding.IHook;
|
|
|
|
import funkin.play.character.MultiSparrowCharacter;
|
2022-03-21 04:19:05 +00:00
|
|
|
import funkin.play.character.PackerCharacter;
|
|
|
|
import funkin.play.character.SparrowCharacter;
|
2022-03-17 05:40:08 +00:00
|
|
|
|
2022-03-21 04:19:05 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2022-03-17 05:40:08 +00:00
|
|
|
@:hscriptClass
|
2022-03-21 04:19:05 +00:00
|
|
|
class ScriptedBaseCharacter extends BaseCharacter implements IHook {}
|
2022-03-17 05:40:08 +00:00
|
|
|
|
|
|
|
@:hscriptClass
|
|
|
|
class ScriptedSparrowCharacter extends SparrowCharacter implements IHook {}
|
|
|
|
|
2022-03-21 04:19:05 +00:00
|
|
|
@:hscriptClass
|
|
|
|
class ScriptedMultiSparrowCharacter extends MultiSparrowCharacter implements IHook {}
|
|
|
|
|
2022-03-17 05:40:08 +00:00
|
|
|
@:hscriptClass
|
|
|
|
class ScriptedPackerCharacter extends PackerCharacter implements IHook {}
|