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
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  {
[9869]13    ObjectListDeclaration(BoomerangGun);
[4827]14  public:
[9217]15    BoomerangGun ();
16    BoomerangGun(const TiXmlElement* root);
17    virtual ~BoomerangGun ();
[3618]18
[4973]19    void init();
[6512]20    virtual void loadParams(const TiXmlElement* root);
[4973]21
[4827]22    virtual void activate();
23    virtual void deactivate();
[3618]24
[4964]25    virtual void tick(float dt);
[4827]26    virtual void fire();
[3618]27
[3752]28
[4827]29  private:
[4934]30  };
[5511]31
[9217]32#endif /* _BOOMERANG_GUN_H */
Note: See TracBrowser for help on using the repository browser.