Changeset 6291 in orxonox.OLD for branches/network/src/world_entities/world_entity.h
- Timestamp:
- Dec 26, 2005, 1:16:13 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/world_entities/world_entity.h
r6277 r6291 72 72 /** @returns a Reference to the Iterator */ 73 73 std::list<WorldEntity*>::iterator& getEntityIterator() { return this->objectListIterator; } 74 75 virtual void writeState(const byte* data, int length, int sender); 76 virtual int readState(byte* data, int maxLength ); 74 77 protected: 75 78 // CharacterAttributes* charAttr; //!< the character attributes of a world_entity 76 char modelFileName[1024]; //!< the filename of the loaded model 79 77 80 78 81 private: … … 85 88 OM_LIST objectListNumber; //!< The ObjectList from ObjectManager this Entity is in. 86 89 std::list<WorldEntity*>::iterator objectListIterator; //!< The iterator position of this Entity in the given list of the ObjectManager. 90 char* modelFileName; 91 int modelNumber; 92 float modelScaling; 87 93 88 94
Note: See TracChangeset
for help on using the changeset viewer.