XmlMapFile.h 293 B

1234567891011121314151617181920
  1. #ifndef XML_MAP_FILE_H
  2. #define XML_MAP_FILE_H
  3. #include "XmlFile.h"
  4. class XmlMapFile : public XmlFile
  5. {
  6. public:
  7. explicit XmlMapFile( const Ogre::String& file );
  8. virtual ~XmlMapFile();
  9. void LoadMap();
  10. const Ogre::String GetWalkmeshFileName();
  11. };
  12. #endif // XML_MAP_FILE_H