summaryrefslogtreecommitdiff
path: root/Entelect.BattleCity.Challenge/Move.cs
blob: 1813c599fb2fa2ad24eb34aa33d1eb230b8b43c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
        }
    }
}