Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/textEngine/src/world_entities/environment.h @ 3681

Last change on this file since 3681 was 3681, checked in by bensch, 19 years ago

orxonox/branches/textEngine: merged trunk here.
merged with command:
svn merge ../trunk textEngine -r 3467:HEAD
no conflicts

File size: 462 bytes
RevLine 
[3224]1#ifndef _ENVIRONEMENT_H
2#define _ENVIRONEMENT_H
[1883]3
[2036]4#include "world_entity.h"
[1883]5
[2036]6
[2816]7class Environment : public WorldEntity
8{
9  friend class World;
10
[1883]11 public:
12  Environment ();
[3544]13  virtual ~Environment ();
[1883]14
[2816]15 
16  virtual void tick (float time);
[3578]17  virtual void hit (WorldEntity* weapon, Vector* loc);
[2816]18  virtual void destroy ();
19  virtual void collide (WorldEntity* other,  Uint32 ownhitflags, Uint32 otherhitflags);
20  virtual void draw ();
[1883]21
22};
23
[3224]24#endif /* _ENVIRONEMENT_H */
Note: See TracBrowser for help on using the repository browser.