TableturfBattleApp/TableturfBattleServer/Space.cs
2022-10-01 16:00:50 +10:00

19 lines
342 B
C#

namespace TableturfBattleServer;
public enum Space {
Empty = 0,
Wall = 1,
OutOfBounds = 2,
Ink1 = 4,
Ink2 = 5,
Ink3 = 6,
Ink4 = 7,
SpecialInactive1 = 8,
SpecialInactive2 = 9,
SpecialInactive3 = 10,
SpecialInactive4 = 11,
SpecialActive1 = 12,
SpecialActive2 = 13,
SpecialActive3 = 14,
SpecialActive4 = 15
}