/*! -------------------------------------------------------------------- \file course.h \brief Encapsulate the course map \author James Kuffner \date 2002-09-18 // -------------------------------------------------------------------*/ #ifndef __COURSE_H__ #define __COURSE_H__ #ifndef IGNORE_DEPEND #include #endif #include "texturemap.h" //--------------------------------------------------------------------- // Course // //! Class to encapsulate the course map // //--------------------------------------------------------------------- class Course { public: Course(); virtual ~Course(); //! Initialize the map bool Init(const char* courseFilename); //! Render the course using the current viewing transform bool Render(); private: // Data }; #endif // __COURSE_H__