示例#1
0
 public Map(int w, int h)
 {
     map = new MapCell[w, h];
 }
示例#2
0
 //constructor
 public Map()
 {
     map = new MapCell[20, 20];
 }