You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
323 B
C++
21 lines
323 B
C++
#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
|