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