|
Last change
on this file since 6159 was
6100,
checked in by bensch, 20 years ago
|
|
orxonox/trunk: copied the heightMap to the trunk, and adapted to partly new framework
|
-
Property svn:executable set to
*
|
|
File size:
604 bytes
|
| Line | |
|---|
| 1 | /* |
|---|
| 2 | orxonox - the future of 3D-vertical-scrollers |
|---|
| 3 | |
|---|
| 4 | Copyright (C) 2004 orx |
|---|
| 5 | |
|---|
| 6 | This program is free software; you can redistribute it and/or modify |
|---|
| 7 | it under the terms of the GNU General Public License as published by |
|---|
| 8 | the Free Software Foundation; either version 2, or (at your option) |
|---|
| 9 | any later version. |
|---|
| 10 | |
|---|
| 11 | ### File Specific: |
|---|
| 12 | main-programmer: |
|---|
| 13 | */ |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | #include "static_model.h" |
|---|
| 17 | |
|---|
| 18 | class SDL_Surface; |
|---|
| 19 | class Vector; |
|---|
| 20 | |
|---|
| 21 | class HeightMap : public StaticModel |
|---|
| 22 | { |
|---|
| 23 | public: |
|---|
| 24 | void load(); |
|---|
| 25 | void load(const char*, int); |
|---|
| 26 | HeightMap(); |
|---|
| 27 | HeightMap(const char*); |
|---|
| 28 | ~HeightMap(); |
|---|
| 29 | |
|---|
| 30 | private: |
|---|
| 31 | SDL_Surface* heightMap; |
|---|
| 32 | |
|---|
| 33 | }; |
|---|
Note: See
TracBrowser
for help on using the repository browser.