Exemplo n.º 1
0
 private void CleanupLevels()
 {
     if (Level != null)
     {
         Level.Dispose();
         Level = null;
     }
 }
Exemplo n.º 2
0
        protected RoomBase(LevelBase level)
        {
            if (level == null)
                throw new ArgumentNullException();

            Level = level;

            InitializeInternal();
        }
Exemplo n.º 3
0
 public static RoomBase Level1Room2Factory(LevelBase level)
 {
     return new Level1Room2(level);
 }
Exemplo n.º 4
0
 protected Level1Room2(LevelBase level)
     : base(level)
 {
 }