Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: merged the new_class_id branche back to the trunk.
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/new_class_id trunk -r9683:HEAD
no conflicts… puh..

File size: 526 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    ObjectListDeclaration(BoomerangGun);
14  public:
15    BoomerangGun ();
16    BoomerangGun(const TiXmlElement* root);
17    virtual ~BoomerangGun ();
18
19    void init();
20    virtual void loadParams(const TiXmlElement* root);
21
22    virtual void activate();
23    virtual void deactivate();
24
25    virtual void tick(float dt);
26    virtual void fire();
27
28
29  private:
30  };
31
32#endif /* _BOOMERANG_GUN_H */
Note: See TracBrowser for help on using the repository browser.