Changeset 6045 for code/branches/steering/src/orxonox/worldentities
- Timestamp:
- Nov 11, 2009, 5:39:53 PM (15 years ago)
- Location:
- code/branches/steering/src/orxonox/worldentities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/steering/src/orxonox/worldentities/ControllableEntity.cc
r5929 r6045 62 62 this->camera_ = 0; 63 63 this->xmlcontroller_ = 0; 64 this->controller_ = 0; 64 65 this->reverseCamera_ = 0; 65 66 this->bDestroyWhenPlayerLeft_ = false; -
code/branches/steering/src/orxonox/worldentities/ControllableEntity.h
r5929 r6045 139 139 inline Controller* getXMLController() const 140 140 { return this->xmlcontroller_; } 141 142 inline Controller* getController() const 143 { return this->controller_; } 144 inline void setController(Controller* c) 145 { this->controller_ = c; } 141 146 142 147 protected: … … 201 206 std::string cameraPositionTemplate_; 202 207 Controller* xmlcontroller_; 208 Controller* controller_; 203 209 CameraPosition* reverseCamera_; 204 210 };
Note: See TracChangeset
for help on using the changeset viewer.