Ejemplo n.º 1
0
 public ImagePresenterView()
 {
     InitializeComponent();
     _resizableGrid = (ResizableGrid)this.FindName("resizableGrid");
 }
Ejemplo n.º 2
0
 private void resetMap()
 {
     tileGrid = new ResizableGrid<Tile>();
     grass.Count = 0;
     hill.Count = 0;
     mountain.Count = 0;
     wasteland.Count = 0;
     water.Count = 0;
 }