summaryrefslogtreecommitdiff
path: root/2013-battlecity/Entelect.BattleCity.Challenge/BoardCell.cs
diff options
context:
space:
mode:
Diffstat (limited to '2013-battlecity/Entelect.BattleCity.Challenge/BoardCell.cs')
-rw-r--r--2013-battlecity/Entelect.BattleCity.Challenge/BoardCell.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/2013-battlecity/Entelect.BattleCity.Challenge/BoardCell.cs b/2013-battlecity/Entelect.BattleCity.Challenge/BoardCell.cs
new file mode 100644
index 0000000..bd7063e
--- /dev/null
+++ b/2013-battlecity/Entelect.BattleCity.Challenge/BoardCell.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Entelect.BattleCity.Challenge
+{
+ public enum BoardCell
+ {
+ EMPTY,
+ WALL,
+ BASE,
+ OUT_OF_BOUNDS
+ }
+}