Changeset 10540 in orxonox.OLD for trunk/src/world_entities/world_entity.h
- Timestamp:
- Jan 31, 2007, 5:04:11 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/world_entity.h
r10511 r10540 62 62 void mount(int slot, WorldEntity* entity); 63 63 void unmount(int slot); 64 65 64 66 65 67 /** @param visibility if the Entity should be visible (been draw) */ … … 176 178 ; ///FIXME 177 179 void debugEntity() const; 178 180 179 181 void pauseTrack(bool stop); 180 182 … … 194 196 void updateHealthWidget(); 195 197 void addTrack(const TiXmlElement* root); 196 198 199 200 201 protected: 202 std::vector<MountPoint*> mountPoints; //!< A list with mount points for this model 203 std::map<int, MountPoint*> mountPointMap; 204 197 205 198 206 … … 206 214 std::vector<Model*> models; //!< The model that should be loaded for this entity. 207 215 ObjectInformationFile* oiFile; //!< Reference to the object information file discribing the model of this WE 208 std::vector<MountPoint*> mountPoints; //!< A list with mount points for this model209 216 std::string md2TextureFileName; //!< the file name of the md2 model texture, only if this 210 217 std::string modelLODName; //!< the name of the model lod file
Note: See TracChangeset
for help on using the changeset viewer.