source: trunk/VUT/work/TestCullingTerrain/IoManager.h @ 104

Revision 104, 387 bytes checked in by mattausch, 19 years ago (diff)
Line 
1#ifndef _IoManager_H__
2#define _IoManager_H__
3
4#include <OgrePrerequisites.h>
5#include <OgreMath.h>
6#include <Ogre.h>
7
8class IoManager
9{
10public:
11        IoManager(Ogre::String fileName);
12
13        void Write();
14        AddNode(SceneNode *node);
15
16protected:
17        std::ofstream mFile;
18        std::vector<Ogre::Vector3> mPositions;
19        std::vector<Ogre::Quaternion> mOrientations;
20};
21
22#endif // IoManager
Note: See TracBrowser for help on using the repository browser.