1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 05:19:55 +00:00
openmw-tes3mp/apps/openmw/mwrender/player.hpp

30 lines
530 B
C++
Raw Normal View History

#ifndef GAME_MWRENDER_PLAYER_H
#define GAME_MWRENDER_PLAYER_H
2011-02-10 11:56:19 +00:00
#include <iostream>
namespace Ogre
{
class Camera;
}
namespace MWRender
{
/// \brief Player character rendering and camera control
class Player
{
Ogre::Camera *mCamera;
2011-02-10 11:56:19 +00:00
std::string mHandle;
public:
2011-02-10 11:56:19 +00:00
Player (Ogre::Camera *camera, const std::string& handle);
Ogre::Camera *getCamera() { return mCamera; }
2011-02-10 11:56:19 +00:00
std::string getHandle() const { return mHandle; }
};
}
#endif