Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

merged the presentation back

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