Revision 193,
451 bytes
checked in by mattausch, 19 years ago
(diff) |
changed to ogre 103
added readme
|
Line | |
---|
1 | #ifndef __IVManualMeshLoader_H__
|
---|
2 | #define __IVManualMeshLoader_H__
|
---|
3 |
|
---|
4 |
|
---|
5 | #include "Ogre.h"
|
---|
6 | #include "ivmeshdata.h"
|
---|
7 |
|
---|
8 |
|
---|
9 | class __declspec(dllexport) IVManualMeshLoader: public Ogre::ManualResourceLoader
|
---|
10 | {
|
---|
11 | public:
|
---|
12 | IVManualMeshLoader();
|
---|
13 | IVManualMeshLoader(IVMeshData *mData);
|
---|
14 | ~IVManualMeshLoader();
|
---|
15 |
|
---|
16 | void loadResource(Ogre::Resource *resource);
|
---|
17 |
|
---|
18 | Ogre::AxisAlignedBox *getBoundingBox();
|
---|
19 | private:
|
---|
20 | IVMeshData *data;
|
---|
21 |
|
---|
22 | };
|
---|
23 |
|
---|
24 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.