summaryrefslogtreecommitdiff
path: root/Entelect.BattleCity.Challenge/Move.cs
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@entelect.co.za>2013-10-14 19:33:05 +0200
committerJustin Worthe <justin.worthe@entelect.co.za>2013-10-14 19:33:05 +0200
commit26210d7b73f37e30d1b5ca88e2275fd01caf5d72 (patch)
treeadb848e49b7d55456ae3a86957f4c9f09eb68913 /Entelect.BattleCity.Challenge/Move.cs
Initial commit with the Mono Rot Bot
Diffstat (limited to 'Entelect.BattleCity.Challenge/Move.cs')
-rw-r--r--Entelect.BattleCity.Challenge/Move.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/Entelect.BattleCity.Challenge/Move.cs b/Entelect.BattleCity.Challenge/Move.cs
new file mode 100644
index 0000000..1813c59
--- /dev/null
+++ b/Entelect.BattleCity.Challenge/Move.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace Entelect.BattleCity.Challenge
+{
+ class Move
+ {
+ public int Tank { get; private set; }
+ public ChallengeService.action Action { get; private set; }
+
+ public Move(int tank, ChallengeService.action action)
+ {
+ Tank = tank;
+ Action = action;
+ }
+ }
+}