forked from mirror/openmw-tes3mp
19 lines
343 B
C++
19 lines
343 B
C++
#ifndef _INPUT_OISMANAGER_H
|
|
#define _INPUT_OISMANAGER_H
|
|
|
|
#include "components/engine/ogre/renderer.hpp"
|
|
#include <OIS/OIS.h>
|
|
|
|
namespace Input
|
|
{
|
|
struct OISManager
|
|
{
|
|
OIS::InputManager *inputMgr;
|
|
OIS::Mouse *mouse;
|
|
OIS::Keyboard *keyboard;
|
|
|
|
OISManager(Render::OgreRenderer &rend, bool debug);
|
|
~OISManager();
|
|
};
|
|
}
|
|
#endif
|