XmlTextFile.h 246 B

12345678910111213141516171819
  1. #ifndef XML_TEXT_FILE_H
  2. #define XML_TEXT_FILE_H
  3. #include "XmlFile.h"
  4. class XmlTextFile : public XmlFile
  5. {
  6. public:
  7. XmlTextFile( const Ogre::String& file );
  8. virtual ~XmlTextFile();
  9. void LoadTexts();
  10. };
  11. #endif // XML_TEXT_FILE_H