source:
orxonox.OLD/trunk/src/world_entities/weapons/hyperblaster.h
@
8076
Last change on this file since 8076 was 6810, checked in by bensch, 19 years ago | |
---|---|
File size: 656 bytes |
Rev | Line | |
---|---|---|
[4827] | 1 | /*! |
[6810] | 2 | * @file hyperblaster.h |
3 | * a weapon that to fire heavy weaponary Hyperblasts. | |
[3618] | 4 | */ |
5 | ||
6 | ||
[6810] | 7 | #ifndef _HYPERBLASTER_H |
8 | #define _HYPERBLASTER_H | |
[3618] | 9 | |
10 | #include "weapon.h" | |
11 | ||
[6810] | 12 | class Hyperblaster : public Weapon |
[4934] | 13 | { |
[4827] | 14 | public: |
[6810] | 15 | Hyperblaster (const TiXmlElement* root = NULL); |
16 | virtual ~Hyperblaster (); | |
[3618] | 17 | |
[4972] | 18 | void init(); |
[6512] | 19 | virtual void loadParams(const TiXmlElement* root); |
[4972] | 20 | |
[4827] | 21 | virtual void activate(); |
22 | virtual void deactivate(); | |
[3618] | 23 | |
[4827] | 24 | virtual void fire(); |
25 | virtual void destroy(); | |
[3618] | 26 | |
[4827] | 27 | private: |
[5621] | 28 | // PNode* objectComponent1; //<! the gun is made of multiple parts, these PNodes represent their location and orientation |
[4934] | 29 | }; |
[6810] | 30 | #endif /* _HYPERBLASTER_H */ |
Note: See TracBrowser
for help on using the repository browser.