Changeset 2786 for code/branches/questsystem5/src/orxonox/gamestates
- Timestamp:
- Mar 15, 2009, 12:55:45 PM (16 years ago)
- Location:
- code/branches/questsystem5/src/orxonox/gamestates
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/questsystem5/src/orxonox/gamestates/GSLevel.cc
r2759 r2786 46 46 #include "LevelManager.h" 47 47 #include "PlayerManager.h" 48 #include "objects/quest/QuestManager.h" 49 #include "overlays/notifications/NotificationManager.h" 48 50 49 51 namespace orxonox … … 95 97 96 98 this->playerManager_ = new PlayerManager(); 99 100 this->questManager_ = new QuestManager(); 101 102 this->notificationManager_ = new NotificationManager(); 97 103 98 104 if (Core::isMaster()) -
code/branches/questsystem5/src/orxonox/gamestates/GSLevel.h
r2710 r2786 63 63 LevelManager* levelManager_; 64 64 PlayerManager* playerManager_; 65 QuestManager* questManager_; 66 NotificationManager* notificationManager_; 65 67 66 68 //##### ConfigValues #####
Note: See TracChangeset
for help on using the changeset viewer.