Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2816 in orxonox.OLD for orxonox/trunk/src/environment.h


Ignore:
Timestamp:
Nov 11, 2004, 10:32:34 PM (21 years ago)
Author:
patrick
Message:

orxonox/trunk/src: new list implemented

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/environment.h

    r2036 r2816  
    1 
    2 
    3 
    41#ifndef ENVIRONEMENT_H
    52#define ENVIRONEMENT_H
    63
    7 
    84#include "world_entity.h"
    95
    10 class Environment : public WorldEntity {
     6
     7class Environment : public WorldEntity
     8{
     9  friend class World;
    1110
    1211 private:
     
    2120  ~Environment ();
    2221
    23   void paint(void);
    24   void drawEnvironment(void);
    25   void setEnvPosition(void);
    26   void getEnvPosition(void);
     22 
     23  virtual void tick (float time);
     24  virtual void hit (WorldEntity* weapon, Vector loc);
     25  virtual void destroy ();
     26  virtual void collide (WorldEntity* other,  Uint32 ownhitflags, Uint32 otherhitflags);
     27  virtual void draw ();
    2728
    2829};
Note: See TracChangeset for help on using the changeset viewer.