|
Last change
on this file since 2664 was
2036,
checked in by patrick, 21 years ago
|
|
orxonxo/trunk/src: extended framework: class inheritance, right including (had som bugs), framework not finished yet
|
|
File size:
371 bytes
|
| Line | |
|---|
| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | #ifndef ENVIRONEMENT_H |
|---|
| 5 | #define ENVIRONEMENT_H |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | #include "world_entity.h" |
|---|
| 9 | |
|---|
| 10 | class 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.