Changeset 5593 in orxonox.OLD for branches/world_entities/src
- Timestamp:
- Nov 16, 2005, 2:17:36 PM (19 years ago)
- Location:
- branches/world_entities/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/world_entities/src/Makefile.am
r5558 r5593 67 67 world_entities/weapons/laser.cc \ 68 68 world_entities/weapons/aim.cc \ 69 world_entities/weapons/bomb.cc \ 69 70 world_entities/weapons/crosshair.cc \ 70 71 world_entities/power_ups/power_up.cc \ … … 102 103 world_entities/weapons/laser.h \ 103 104 world_entities/weapons/aim.h \ 105 world_entities/weapons/bomb.h \ 104 106 world_entities/weapons/crosshair.h \ 105 107 world_entities/power_ups/power_up.h \ -
branches/world_entities/src/world_entities/weapons/bomb.h
r5590 r5593 1 1 /*! 2 * @file proto_world_entity.h2 * @file bomb.h 3 3 * @brief description 4 4 */ 5 5 6 #ifndef _PROTO_WORLD_ENTITY_H7 #define _PROTO_WORLD_ENTITY_H6 #ifndef BOMB 7 #define BOMB 8 8 9 #include " world_entity.h"9 #include "bomb.h" 10 10 11 11 //! A Class to ... 12 class ProtoWorldEntity : public WorldEntity12 class Bomb : public Projectile 13 13 { 14 14 15 15 public: 16 ProtoWorldEntity(const TiXmlElement* root = NULL);17 virtual ~ ProtoWorldEntity();16 Bomb(const TiXmlElement* root = NULL); 17 virtual ~Bomb(); 18 18 19 19 void loadParams(const TiXmlElement* root); … … 32 32 }; 33 33 34 #endif /* _PROTO_WORLD_ENTITY_H*/34 #endif /* BOMB */
Note: See TracChangeset
for help on using the changeset viewer.