Exemplo n.º 1
0
 public bool Equals(Village other)
 {
     return(Id == other.Id);
 }
Exemplo n.º 2
0
 public double Distance(Village village)
 {
     return(Geometry.Distance(Coords, village.Coords));
 }
Exemplo n.º 3
0
 public AttackScheduler(Village loc, ArmyBuilder army, DateTime date)
 {
     Location = loc;
     Army     = army;
     Date     = date;
 }