Exemplo n.º 1
0
 public Map(int w, int h)
 {
     map = new MapCell[w, h];
 }
Exemplo n.º 2
0
 //constructor
 public Map()
 {
     map = new MapCell[20, 20];
 }