Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/environment.h @ 2590

Last change on this file since 2590 was 2036, checked in by patrick, 20 years ago

orxonxo/trunk/src: extended framework: class inheritance, right including (had som bugs), framework not finished yet

File size: 371 bytes
RevLine 
[1883]1
2
[2036]3
[1896]4#ifndef ENVIRONEMENT_H
5#define ENVIRONEMENT_H
[1883]6
7
[2036]8#include "world_entity.h"
[1883]9
[2036]10class Environment : public WorldEntity {
11
[1883]12 private:
13  float xCor;
14  float yCor;
15  float zCor;
16
17  float mountainTest[10][10];
18
19 public:
20  Environment ();
21  ~Environment ();
22
[2036]23  void paint(void);
[1883]24  void drawEnvironment(void);
25  void setEnvPosition(void);
26  void getEnvPosition(void);
27
28};
29
30#endif
Note: See TracBrowser for help on using the repository browser.