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