mirror of
https://github.com/libretro/Play-.git
synced 2024-11-27 18:50:28 +00:00
12 lines
190 B
C++
12 lines
190 B
C++
#pragma once
|
|
|
|
#include "Types.h"
|
|
#include "Singleton.h"
|
|
|
|
class CInputManager : public CSingleton<CInputManager>
|
|
{
|
|
public:
|
|
void SetButtonState(int, bool);
|
|
void SetAxisState(int, float);
|
|
};
|