Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/chris/src/environment.h @ 3098

Last change on this file since 3098 was 2058, checked in by chris, 20 years ago

orxonox/branches/chris: Trunk remerged into my branch started on SDL reconfiguration

File size: 371 bytes
Line 
1
2
3
4#ifndef ENVIRONEMENT_H
5#define ENVIRONEMENT_H
6
7
8#include "world_entity.h"
9
10class Environment : public WorldEntity {
11
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
23  void paint(void);
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.