Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 8, 2009, 1:36:05 AM (15 years ago)
Author:
landauf
Message:

reverted r2909 because there were some unwanted files included

Location:
code/trunk/src/orxonox/gamestates
Files:
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/gamestates/GSLevel.cc

    r2909 r2910  
    5050#include "LevelManager.h"
    5151#include "PlayerManager.h"
    52 #include "orxonox/objects/quest/QuestManager.h"
    53 #include "orxonox/overlays/notifications/NotificationManager.h"
    5452#include "gui/GUIManager.h"
    5553
     
    112110
    113111        this->playerManager_ = new PlayerManager();
    114 
    115         this->questManager_ = new QuestManager();
    116 
    117         this->notificationManager_ = new NotificationManager();
    118112
    119113        if (GameMode::isMaster())
     
    209203            delete this->playerManager_;
    210204            this->playerManager_ = 0;
    211         }
    212 
    213         if (this->questManager_)
    214         {
    215             delete this->questManager_;
    216             this->questManager_ = NULL;
    217         }
    218 
    219         if (this->notificationManager_)
    220         {
    221             delete this->notificationManager_;
    222             this->notificationManager_ = NULL;
    223205        }
    224206
  • code/trunk/src/orxonox/gamestates/GSLevel.h

    r2909 r2910  
    6767        LevelManager*         levelManager_;            //!< global level manager
    6868        PlayerManager*        playerManager_;           //!< player manager for this level
    69         QuestManager*         questManager_;            //!< quest manager for this level
    70         NotificationManager*  notificationManager_;     //!< notification manager for this level
    7169
    7270        //##### ConfigValues #####
Note: See TracChangeset for help on using the changeset viewer.