예제 #1
0
 public Destination(int id, int profit, Coordinate coordinate)
 {
     Id = id;
     Profit = profit;
     Coordinate = coordinate;
 }
예제 #2
0
 public Destination(Destiny destiny)
 {
     Id = destiny.Id;
     Profit = destiny.Profit;
     Coordinate = new Coordinate(destiny.X, destiny.Y);
 }