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

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

worded on obj loading in Ogre

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