mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-10 08:44:47 +00:00
16 lines
329 B
Haxe
16 lines
329 B
Haxe
package funkin.play.character.render;
|
|
|
|
import funkin.play.character.CharacterBase.CharacterType;
|
|
|
|
/**
|
|
* A PackerCharacter is a Character which is rendered by
|
|
* displaying an animation derived from a Packer spritesheet file.
|
|
*/
|
|
class PackerCharacter extends CharacterBase
|
|
{
|
|
public function new(id:String)
|
|
{
|
|
super(id);
|
|
}
|
|
}
|