Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/weapons/boomerang_gun.h @ 9235

Last change on this file since 9235 was 9235, checked in by bensch, 18 years ago

merged the presentation back

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