FieldModel.h 249 B

12345678910111213141516171819
  1. #ifndef FIELDMODEL_H
  2. #define FIELDMODEL_H
  3. #include <Ogre.h>
  4. class FieldModel
  5. {
  6. public:
  7. FieldModel();
  8. virtual ~FieldModel();
  9. void Export(const Ogre::String& model_file, const Ogre::String& texture_file);
  10. };
  11. #endif // FIELDMODEL_H