mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 08:07:54 -05:00
16 lines
356 B
Haxe
16 lines
356 B
Haxe
package funkin.play.character;
|
|
|
|
import funkin.play.character.BaseCharacter.CharacterType;
|
|
|
|
/**
|
|
* A PackerCharacter is a Character which is rendered by
|
|
* displaying an animation derived from a Packer spritesheet file.
|
|
*/
|
|
class PackerCharacter extends BaseCharacter
|
|
{
|
|
public function new(id:String)
|
|
{
|
|
super(id);
|
|
}
|
|
// TODO: Put code here, dumbass!
|
|
}
|