//--------------------------------------------------------------------------- #ifndef ToadscapeH #define ToadscapeH #include "Landscape.h" class Toadscape : public Landscape { public: Toadscape(); // Constructor #if VCL int ReadLandscape(); // Reads landscape data #endif private: }; //--------------------------------------------------------------------------- #endif