aboutsummaryrefslogtreecommitdiff
path: root/V3/Objects/Sprite/KingSprite.cs
blob: 064051429978f4fc8865ab1ae054a7338b4114d3 (plain)
1
2
3
4
5
6
7
namespace V3.Objects.Sprite
{
    public class KingSprite : AbstractSpriteCreature
    {
        protected override string TextureFile { get; } = "king";
    }
}