blob: 0cd1a19f797c21b9d789ea0581c5dcb4be03f0da (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
namespace V3.Objects.Sprite
{
public sealed class ZombieSprite : AbstractSpriteCreature
{
protected override string TextureFile { get; } = "zombie";
protected override int AttackingFrames { get; } = 8;
protected override int DyingTextureIndex { get; } = 22;
protected override int SpecialTextureIndex { get; } = 36;
protected override int SpecialFrames { get; } = 8;
}
}
|