Ejemplo n.º 1
0
 public DecesionResultData(Const.Team team, Const.DecisionResult result)
 {
     this.team   = team;
     this.result = result;
 }
Ejemplo n.º 2
0
 public MapPosition(int x, int y, Const.Team team)
 {
     this._cordinate = new Cordinate(x, y);
     this.Team = team;
 }
Ejemplo n.º 3
0
 public NoteData(Const.Team team, int type, float time)
 {
     Team = team;
     Type = type;
     Time = time;
 }
 public DeviceData(Const.Team team)
 {
     this.team = team;
 }