| 
                Last change
                  on this file since 3073 was
                  2816,
                  checked in by patrick, 21 years ago
           | 
        
        
          | 
               
orxonox/trunk/src: new list implemented 
 
           | 
        
        | 
            File size:
            513 bytes
           | 
      
      
        
  | Rev | Line |   | 
|---|
| [1896] | 1 | #ifndef ENVIRONEMENT_H | 
|---|
 | 2 | #define ENVIRONEMENT_H | 
|---|
| [1883] | 3 |  | 
|---|
| [2036] | 4 | #include "world_entity.h" | 
|---|
| [1883] | 5 |  | 
|---|
| [2036] | 6 |  | 
|---|
| [2816] | 7 | class Environment : public WorldEntity  | 
|---|
 | 8 | { | 
|---|
 | 9 |   friend class World; | 
|---|
 | 10 |  | 
|---|
| [1883] | 11 |  private: | 
|---|
 | 12 |   float xCor; | 
|---|
 | 13 |   float yCor; | 
|---|
 | 14 |   float zCor; | 
|---|
 | 15 |  | 
|---|
 | 16 |   float mountainTest[10][10]; | 
|---|
 | 17 |  | 
|---|
 | 18 |  public: | 
|---|
 | 19 |   Environment (); | 
|---|
 | 20 |   ~Environment (); | 
|---|
 | 21 |  | 
|---|
| [2816] | 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 (); | 
|---|
| [1883] | 28 |  | 
|---|
 | 29 | }; | 
|---|
 | 30 |  | 
|---|
 | 31 | #endif | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.