From a0c4a6c45fc425e5957b3f838155e4a93c73c269 Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Sun, 10 Nov 2013 20:35:42 +0200 Subject: Experimental new method of going straight to center and then shooting forwards Does not really work on the map it was intended for :( Still, might be useful. --- Entelect.BattleCity.Challenge/BoardCell.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Entelect.BattleCity.Challenge/BoardCell.cs (limited to 'Entelect.BattleCity.Challenge/BoardCell.cs') diff --git a/Entelect.BattleCity.Challenge/BoardCell.cs b/Entelect.BattleCity.Challenge/BoardCell.cs new file mode 100644 index 0000000..bd7063e --- /dev/null +++ b/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 + } +} -- cgit v1.2.3