#ifndef TERRAIN_H #define TERRAIN_H class Terrain { public: static float *generate_heights(int x, int y, int width, int height); }; #endif