Esempio n. 1
0
 public IsoManager()
 {
     curLevel = null;
     tileSets = new Dictionary<string, TileSet>();
 }
Esempio n. 2
0
 public void UpdateLevel(Levels.IsoLevel newLevel)
 {
     curLevel = newLevel;
 }
Esempio n. 3
0
 public void Initialize(ContentManager cm)
 {
     curLevel = new Levels.IsoLevel(cm);
 }