- Timestamp:
- Dec 23, 2008, 10:40:38 PM (16 years ago)
- Location:
- code/branches/bugger
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/bugger
- Property svn:mergeinfo changed
/code/branches/questsystem2 (added) merged: 2109,2146,2159,2191,2193-2196,2205-2206,2208-2209,2221,2226,2228,2251,2258
- Property svn:mergeinfo changed
-
code/branches/bugger/src/orxonox/objects/quest/QuestEffect.cc
- Property svn:mergeinfo changed
/code/branches/questsystem2/src/orxonox/objects/quest/QuestEffect.cc (added) merged: 2146,2159,2191,2205,2251 /code/trunk/src/orxonox/objects/quest/QuestEffect.cc merged: 1925-2089
r2105 r2530 27 27 */ 28 28 29 /** 30 @file QuestEffect.cc 31 @brief 32 Implementation of the QuestEffect class. 33 */ 34 29 35 #include "OrxonoxStableHeaders.h" 30 36 #include "QuestEffect.h" 31 37 32 38 #include "core/CoreIncludes.h" 39 40 #include "orxonox/objects/infos/PlayerInfo.h" 33 41 34 42 namespace orxonox { … … 55 63 /** 56 64 @brief 57 Static method. Invoke all effects of an effect list.65 Static method. Invoke all QuestEffects in an QuestEffect-list on a given player. 58 66 @param player 59 The player the effects are invoked on.67 The player the QuestEffects are invoked on. 60 68 @param effects 61 A list of all the effects to be invoked.69 A list of all the QuestEffects to be invoked. 62 70 @return 63 71 Returns false if there was an error, view console of log for further detail. 64 72 */ 65 bool QuestEffect::invokeEffects(Player * player, std::list<QuestEffect*> & effects)73 bool QuestEffect::invokeEffects(PlayerInfo* player, std::list<QuestEffect*> & effects) 66 74 { 67 75 bool check = true; - Property svn:mergeinfo changed
Note: See TracChangeset
for help on using the changeset viewer.