mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 05:15:33 +00:00
23 lines
668 B
C++
23 lines
668 B
C++
|
#ifndef _GAME_RENDER_ACTORS_H
|
||
|
#define _GAME_RENDER_ACTORS_H
|
||
|
|
||
|
#include "components/esm_store/cell_store.hpp"
|
||
|
|
||
|
#include "../mwworld/refdata.hpp"
|
||
|
#include "../mwworld/ptr.hpp"
|
||
|
#include <openengine/ogre/renderer.hpp>
|
||
|
namespace MWRender{
|
||
|
class Actors{
|
||
|
OEngine::Render::OgreRenderer &mRend;
|
||
|
std::map<MWWorld::Ptr::CellStore *, Ogre::SceneNode *> mCellSceneNodes;
|
||
|
std::map<MWWorld::Ptr::CellStore *, Ogre::StaticGeometry*> mSG;
|
||
|
Ogre::SceneNode* mMwRoot;
|
||
|
bool isStatic;
|
||
|
static int uniqueID;
|
||
|
|
||
|
public:
|
||
|
Actors(OEngine::Render::OgreRenderer& _rend): mRend(_rend){}
|
||
|
~Actors(){}
|
||
|
};
|
||
|
}
|
||
|
#endif
|