Changeset 2280 for code/branches/questsystem3/src
- Timestamp:
- Nov 26, 2008, 5:38:55 PM (16 years ago)
- Location:
- code/branches/questsystem3/src/orxonox
- Files:
-
- 8 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/questsystem3/src/orxonox/OrxonoxPrereqs.h
r2261 r2280 170 170 class HUDSpeedBar; 171 171 class InGameConsole; 172 class Notification; 173 class NotificationManager; 174 class NotificationQueue; 172 175 class OrxonoxOverlay; 173 176 class OverlayGroup; -
code/branches/questsystem3/src/orxonox/objects/quest/CompleteQuest.cc
r2261 r2280 42 42 #include "QuestManager.h" 43 43 #include "Quest.h" 44 #include "orxonox/overlays/notifications/Notification.h" 44 45 45 46 namespace orxonox { … … 110 111 111 112 COUT(3) << "Quest {" << quest->getId() << "} successfully completed by player: " << player << " ." << std::endl; 113 Notification* notification = new Notification("Crazy Message...", "Title", 30); 114 notification->send(); 112 115 return true; 113 116 } -
code/branches/questsystem3/src/orxonox/overlays/CMakeLists.txt
r2131 r2280 8 8 ADD_SOURCE_DIRECTORY(SRC_FILES debug) 9 9 ADD_SOURCE_DIRECTORY(SRC_FILES hud) 10 ADD_SOURCE_DIRECTORY(SRC_FILES notifications) 10 11 11 12 ADD_SOURCE_FILES(SRC_FILES)
Note: See TracChangeset
for help on using the changeset viewer.