internal MarsSurface(Vector2 upperRightCorner) { Surface = new MarsSurfacePointState[upperRightCorner.X + 1, upperRightCorner.Y + 1]; }
public MarsSurfaceStub(int m, int n, bool inSurfaceResult) { _inSurfaceResult = inSurfaceResult; Surface = new MarsSurfacePointState[m, n]; }