private bool IsInRange(GridIndex2D index) { int x = index.x; int z = index.z; if (x < 0) { return(false); } if (z < 0) { return(false); } if (x > this.SizeX - 1) { return(false); } if (z > this.SizeZ - 1) { return(false); } return(true); }
public Cell(GridIndex2D index) { this.index = index; }