mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 22:19:54 +00:00
21 lines
345 B
C++
21 lines
345 B
C++
#ifndef MWINPUT_SDLMAPPINGS_H
|
|
#define MWINPUT_SDLMAPPINGS_H
|
|
|
|
#include <string>
|
|
|
|
#include <SDL_types.h>
|
|
|
|
namespace MyGUI
|
|
{
|
|
struct MouseButton;
|
|
}
|
|
|
|
namespace MWInput
|
|
{
|
|
std::string sdlControllerButtonToString(int button);
|
|
|
|
std::string sdlControllerAxisToString(int axis);
|
|
|
|
MyGUI::MouseButton sdlButtonToMyGUI(Uint8 button);
|
|
}
|
|
#endif
|