Changeset 9159 in orxonox.OLD for branches/presentation/src/world_entities/weapons/laser_cannon.h
- Timestamp:
- Jul 4, 2006, 5:38:24 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/presentation/src/world_entities/weapons/laser_cannon.h
r9131 r9159 27 27 28 28 29 //! a weapon can be left or right sided30 /**31 * @todo this will be reset with mirror X/Y/Z32 */33 #define W_LEFT 034 #define W_RIGHT 135 36 37 29 class LaserCannon : public Weapon 38 30 { 39 31 public: 40 LaserCannon (int leftRight); 41 LaserCannon (const TiXmlElement* root); 32 LaserCannon (const TiXmlElement* root = NULL); 42 33 virtual ~LaserCannon (); 43 34 … … 50 41 virtual void fire(); 51 42 52 virtual void draw() const;53 54 43 private: 55 44 PNode* objectComponent1; //<! the gun is made of multiple parts, these PNodes represent their location and orientation 45 }; 56 46 57 int leftRight; // this will become an enum58 };59 47 #endif /* _LASER_CANNON_H */
Note: See TracChangeset
for help on using the changeset viewer.