mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 20:49:56 +00:00
19 lines
313 B
C++
19 lines
313 B
C++
#ifndef _INPUT_OISMANAGER_H
|
|
#define _INPUT_OISMANAGER_H
|
|
|
|
#include "ogre/renderer.hpp"
|
|
#include <OIS/OIS.h>
|
|
|
|
namespace Input
|
|
{
|
|
struct OISManager
|
|
{
|
|
OIS::InputManager *inputMgr;
|
|
OIS::Mouse *mouse;
|
|
OIS::Keyboard *keyboard;
|
|
|
|
OISManager(Render::OgreRenderer &rend);
|
|
~OISManager();
|
|
};
|
|
}
|
|
#endif
|