source: GTP/trunk/Lib/Vis/OnlineCullingCHC/ObjReader/include/ObjManualMeshLoader.h @ 2123

Revision 2123, 465 bytes checked in by mattausch, 17 years ago (diff)

worded on obj loading in Ogre

Line 
1#ifndef __ObjManualMeshLoader_H__
2#define __ObjManualMeshLoader_H__
3
4#include "Ogre.h"
5
6namespace  GtpVisibilityPreprocessor {
7class BvhLeaf;
8}
9
10class __declspec(dllexport) ObjManualMeshLoader: public Ogre::ManualResourceLoader
11{
12public:
13        ObjManualMeshLoader(GtpVisibilityPreprocessor::BvhLeaf *obj);
14        ~ObjManualMeshLoader();
15
16        void loadResource(Ogre::Resource *resource);
17
18protected:
19
20        GtpVisibilityPreprocessor::BvhLeaf *mObject;
21};
22
23#endif
Note: See TracBrowser for help on using the repository browser.