Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/presentation/src/world_entities/weapons/rf_cannon.h @ 10771

Last change on this file since 10771 was 10771, checked in by nicolasc, 17 years ago

huge diff
cleaned the individual weapons, moved stuff to weapon.{cc,h}
and some minor fixes which popped up then and when

File size: 506 bytes
Line 
1#ifndef RF_CANNON_H
2#define RF_CANNON_H
3
4
5#include "weapon.h"
6
7/**
8 *  Light Blaster class
9 */
10class RFCannon : public Weapon
11{
12  ObjectListDeclaration(RFCannon);
13  public:
14    RFCannon ();
15    RFCannon (const TiXmlElement* root);
16    virtual ~RFCannon();
17
18    void init();
19    virtual void loadParams(const TiXmlElement* root);
20
21    virtual void activate();
22    virtual void deactivate();
23
24    virtual void fire();
25
26    virtual void tick(float dt);
27
28    virtual void draw() const;
29
30  private:
31
32};
33
34#endif
Note: See TracBrowser for help on using the repository browser.