Changeset 590 for code/branches/FICN/src/orxonox/objects/SceneNode.h
- Timestamp:
- Dec 17, 2007, 8:23:26 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/objects/SceneNode.h
r515 r590 4 4 #include "BaseObject.h" 5 5 #include "../../tinyxml/tinyxml.h" 6 #include "network/Synchronisable.h" 6 7 7 8 namespace orxonox 8 9 { 9 class SceneNode : public BaseObject 10 class SceneNode : public BaseObject, public network::Synchronisable 10 11 { 11 12 public: 12 13 13 SceneNode(); 14 virtual ~SceneNode(); 14 15 15 16 16 void loadParams(TiXmlElement* xmlElem); 17 17 void loadParams(TiXmlElement* xmlElem); 18 bool create(); 19 protected: 20 void registerAllVariables(); 18 21 private: 19 22 float x_, y_, z_; 23 float sx_, sy_, sz_; 24 float yaw_, pitch_, roll_; 25 std::string node_; 20 26 21 27 };
Note: See TracChangeset
for help on using the changeset viewer.