public void SetMap(MapType T, int x, int y) { if (Map == null) { IMap map = new SimpleMap(); map.SetSize(x, y); map.SetType(T); this.Map = map; } else { Map.SetSize(x, y); Map.SetType(T); } return; }