summaryrefslogtreecommitdiff
path: root/Entelect.BattleCity.Challenge/Move.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Entelect.BattleCity.Challenge/Move.cs')
-rw-r--r--Entelect.BattleCity.Challenge/Move.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/Entelect.BattleCity.Challenge/Move.cs b/Entelect.BattleCity.Challenge/Move.cs
deleted file mode 100644
index 7fba664..0000000
--- a/Entelect.BattleCity.Challenge/Move.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-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;
- }
-
- public override string ToString()
- {
- return string.Format("Tank {0}: {1}", Tank, Action.ToString());
- }
- }
-}