Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/powerups/src/world_entities/extendable.h @ 5973

Last change on this file since 5973 was 5965, checked in by manuel, 19 years ago

many changes:
created generic weapon_power_up that can contain any kind of weapon
space_ship is now extendable and can pickup weapon_power_ups

File size: 433 bytes
Line 
1/*!
2 * @file proto_class.h
3 * @brief Interface for Worldentities that can picku up powerups.
4*/
5
6#ifndef _EXTENDABLE_H
7#define _EXTENDABLE_H
8
9#include "base_object.h"
10
11// FORWARD DECLARATION
12class PowerUp;
13
14
15//! A class for ...
16class Extendable : virtual public BaseObject {
17
18 public:
19//   Extendable();
20//   virtual ~Extendable();
21  virtual bool pickup(PowerUp* powerUp) { return false; }
22
23 private:
24
25};
26
27#endif /* _EXTENDABLE_H */
Note: See TracBrowser for help on using the repository browser.