summaryrefslogtreecommitdiff
path: root/terrain.h
blob: 88b2277c721336ff4effd88c5bd950524fd255f8 (plain)
1
2
3
4
5
6
7
8
9
#ifndef TERRAIN_H
#define TERRAIN_H

class Terrain {
	public:
		static float *generate_heights(int x, int y, int width, int height);
};

#endif