Changeset 7474 for code/trunk/src/modules/questsystem
- Timestamp:
- Sep 21, 2010, 11:15:44 PM (14 years ago)
- Location:
- code/trunk/src/modules/questsystem
- Files:
-
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/modules/questsystem/CMakeLists.txt
r7401 r7474 10 10 QuestListener.cc 11 11 QuestManager.cc 12 QuestNotification.cc13 12 ) 14 13 -
code/trunk/src/modules/questsystem/QuestDescription.cc
r7456 r7474 38 38 #include "core/XMLPort.h" 39 39 40 #include "QuestNotification.h" 40 #include "infos/PlayerInfo.h" 41 42 #include "notifications/NotificationManager.h" 41 43 42 44 namespace orxonox 43 45 { 44 46 CreateFactory(QuestDescription); 47 48 /*static*/ const std::string QuestDescription::SENDER = "questsystem"; 45 49 46 50 /** … … 115 119 } 116 120 117 QuestNotification* notification = new QuestNotification(this, message); 118 notification->send(player); 121 NotificationManager::sendNotification(message, player->getClientID(), QuestDescription::SENDER); 119 122 return true; 120 123 } -
code/trunk/src/modules/questsystem/QuestDescription.h
r7456 r7474 128 128 129 129 private: 130 static const std::string SENDER; 131 130 132 std::string title_; //!< The title. 131 133 std::string description_; //!< The description. -
code/trunk/src/modules/questsystem/QuestsystemPrereqs.h
r7164 r7474 81 81 class QuestListener; 82 82 class QuestManager; 83 class QuestNotification;84 83 } 85 84
Note: See TracChangeset
for help on using the changeset viewer.