Ejemplo n.º 1
0
 /* Position Ash in a map. */
 private void PositionAsh()
 {
     this.Ash = new Ash() {}; //ash
        this.Ash.Pos = new Helper.Point(19, 24);
        _ashIndex = new Helper.Point(19, 24);
 }
Ejemplo n.º 2
0
 public Elem(int accCost, Helper.Point pos, Helper.Point? parent = null)
 {
     this.accCost = accCost;
     this.pos = pos;
     this.parent = parent;
 }