Changeset 3761 in orxonox.OLD for orxonox/trunk/src/proto/proto_world_entity.h
- Timestamp:
- Apr 8, 2005, 12:49:40 PM (20 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/proto/proto_world_entity.h
r3760 r3761 1 1 /*! 2 \file terrain.h 3 \brief Defines and handles the terrain of the World 2 \file proto_world_entity 4 3 5 \todo implement it6 7 The terrain should either be build from a Model a OBJModel or from a HeightMap.8 4 */ 9 5 10 #ifndef _ TERRAIN_H11 #define _ TERRAIN_H6 #ifndef _PROTO_WORLD_ENTITY_H 7 #define _PROTO_WORLD_ENTITY_H 12 8 13 9 #include "world_entity.h" 14 10 15 // FORWARD DEFINITION \\ 16 17 //! A simple method to call a desired debug world. 18 enum DebugTerrain {TERRAIN_DAVE, TERRAIN_BENSCH}; 19 20 21 //! A Class to handle Terrain of orxonox 22 class Terrain : public WorldEntity 11 //! A Class to ... 12 class ProtoWorldEntity : public WorldEntity 23 13 { 24 14 25 15 public: 26 Terrain(); 27 Terrain(char* fileName); 28 Terrain(DebugTerrain debugTerrain); 29 virtual ~Terrain(); 16 ProtoWorldEntity(); 17 virtual ~ProtoWorldEntity(); 30 18 void init(); 31 19 32 void buildDebugTerrain(DebugTerrain debugTerrain);33 20 virtual void draw(); 34 21 35 22 private: 36 int objectList; 23 37 24 }; 38 25 39 #endif /* _ TERRAIN_H */26 #endif /* _PROTO_WORLD_ENTITY_H */
Note: See TracChangeset
for help on using the changeset viewer.