Changeset 2913 for code/branches/map/src/orxonox/objects/RadarViewable.h
- Timestamp:
- Apr 9, 2009, 4:52:36 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/map/src/orxonox/objects/RadarViewable.h
r2662 r2913 36 36 #include "util/Debug.h" 37 37 #include "core/OrxonoxClass.h" 38 39 #include <OgreSceneNode.h> 40 #include <OgreEntity.h> 38 41 39 42 namespace orxonox … … 80 83 { return this->radarObjectShape_; } 81 84 85 /* 86 inline void setMapNode(Ogre::SceneNode * node) 87 { this->MapNode_ = node; } 88 inline Ogre::SceneNode * getMapNode() const 89 { return this->MapNode_; } 90 inline void setMapEntity(Ogre::Entity * ent) 91 { this->MapEntity_ = ent; } 92 inline Ogre::Entity * getMapEntity() const 93 { return this->MapEntity_; } 94 */ 95 //Used for Map 96 Ogre::SceneNode * MapNode_; 97 Ogre::Entity * MapEntity_; 98 82 99 private: 83 100 void validate(const WorldEntity* object) const … … 94 111 std::string radarObjectDescription_; 95 112 ColourValue radarObjectColour_; 113 96 114 }; 97 115 }
Note: See TracChangeset
for help on using the changeset viewer.