mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-02-20 07:13:49 -07:00
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1986 8ced0084-cf51-0410-be5f-012b33b47a6e
22 lines
293 B
C++
22 lines
293 B
C++
#ifndef INPUTMANAGER_H
|
|
#define INPUTMANAGER_H
|
|
#include "Common.h"
|
|
|
|
#if defined HAVE_SDL && HAVE_SDL
|
|
#include <SDL.h>
|
|
#endif
|
|
|
|
class InputManager {
|
|
|
|
public:
|
|
bool Init();
|
|
bool Shutdown();
|
|
|
|
InputManager(): sdlInit(false) {}
|
|
~InputManager() {}
|
|
|
|
private:
|
|
bool sdlInit;
|
|
};
|
|
#endif
|