Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/graphics/importer/height_map.h @ 6769

Last change on this file since 6769 was 6100, checked in by bensch, 19 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
RevLine 
[5942]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
[5967]15
[6100]16#include "static_model.h"
[5942]17
[5967]18class SDL_Surface;
19class Vector;
[5942]20
[6100]21class HeightMap : public StaticModel
[5942]22{
23public:
24void load();
[5967]25void load(const char*, int);
[5942]26HeightMap();
[5967]27HeightMap(const char*);
28~HeightMap();
29
30private:
31SDL_Surface* heightMap;
32
[5942]33};
Note: See TracBrowser for help on using the repository browser.