Changeset 6417 for code/trunk/src/orxonox/interfaces
- Timestamp:
- Dec 25, 2009, 10:23:58 PM (15 years ago)
- Location:
- code/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/src/orxonox/interfaces/RadarViewable.cc
r5929 r6417 51 51 , line_(NULL) 52 52 , LineNode_(NULL) 53 , isHumanShip_(false) 54 , bVisibility_(true) 53 55 , radarObjectCamouflage_(0.0f) 54 56 , radarObjectShape_(Dot) … … 56 58 { 57 59 RegisterRootObject(RadarViewable); 58 59 this->bVisibility_ = true;60 this->isHumanShip_ = false;61 60 62 61 this->uniqueId_=getUniqueNumberString(); … … 164 163 if (!object) 165 164 { 166 COUT(1) << "Assert ation: Every RadarViewable has to be assigned a WorldEntity pointer!" << std::endl;165 COUT(1) << "Assertion: Every RadarViewable has to be assigned a WorldEntity pointer!" << std::endl; 167 166 assert(0); 168 167 } -
code/trunk/src/orxonox/interfaces/Rewardable.h
r5781 r6417 43 43 @brief 44 44 Rewardable is an Interface, that can be implemented by any object to enable it to be given as reward to a player through QuestEffects. (With the AddReward effect.) 45 45 46 46 It just needs to inherit form Rewardable, and implement the reward() method. 47 47 @author
Note: See TracChangeset
for help on using the changeset viewer.