mirror of
https://github.com/AndrioCelos/TableturfBattleApp.git
synced 2026-03-23 10:24:10 -05:00
19 lines
342 B
C#
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
|
|
}
|