1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-24 12:53:52 +00:00
openmw-tes3mp/input/oismanager.hpp

21 lines
323 B
C++
Raw Normal View History

#ifndef _INPUT_OISMANAGER_H
#define _INPUT_OISMANAGER_H
#include "ogre/renderer.hpp"
#include <OIS/OIS.h>
namespace Input
{
class OISManager
{
OIS::InputManager *inputMgr;
OIS::Mouse *mouse;
OIS::Keyboard *keyboard;
public:
void setup(Render::OgreRenderer *rend);
void cleanup();
};
}
#endif