Changeset 2092 for code/trunk/src/orxonox/objects/quest/QuestEffect.cc
- Timestamp:
- Nov 1, 2008, 8:32:10 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/objects/quest/QuestEffect.cc
r2091 r2092 38 38 Is not meant to be invoked directly, since this is only an interface. 39 39 */ 40 QuestEffect::QuestEffect( ) : BaseObject()40 QuestEffect::QuestEffect(BaseObject* creator) : BaseObject(creator) 41 41 { 42 42 RegisterObject(QuestEffect); 43 43 } 44 44 45 45 /** 46 46 @brief … … 49 49 QuestEffect::~QuestEffect() 50 50 { 51 51 52 52 } 53 53 54 54 /** 55 55 @brief … … 65 65 { 66 66 bool check = true; 67 67 68 68 for (std::list<QuestEffect*>::iterator effect = effects.begin(); effect != effects.end(); effect++) 69 69 {
Note: See TracChangeset
for help on using the changeset viewer.