#ifndef LAND #define LAND #include #include "Object.h" class Land: public Object { public: Land(int xdim = 100, int ydim = 100); GLfloat Height(int x, int y); private: // required virtuals void Init(); void DisplaySetup() {return;}; int xDim, yDim; }; #endif