/* 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); }
public Elem(int accCost, Helper.Point pos, Helper.Point? parent = null) { this.accCost = accCost; this.pos = pos; this.parent = parent; }