Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 6, 2005, 6:01:06 PM (20 years ago)
Author:
nico
Message:

branches/heightMap: some makefile and include stuff fixed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/heightMap/src/lib/graphics/importer/heightmap.h

    r4021 r4090  
     1
     2
     3#ifndef _HEIGHTMAP_H
     4#define _HEIGHTMAP_H
     5
    16#include "model.h"
     7#include <SDL_image.h>
    28
    39class Heightmap : public Model
    410{
    511
     12public:
     13        Heightmap(const char* fileName, float scaling = 1.0, int displaylistResolution = 100, int vertexResolution = 1);
    614
     15        virtual ~Heightmap();
     16       
     17private:
     18        bool import (const char* fileName);
    719
     20        // holds the loaded pixels
     21        SDL_Surface* bitmap;
     22};
    823
    9 
    10 
    11 }
     24#endif /* _HEIGHTMAP_H */
Note: See TracChangeset for help on using the changeset viewer.