mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 11:56:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			323 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 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
 |