2015-06-30 05:26:01 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Types.h"
|
|
|
|
#include "Singleton.h"
|
|
|
|
|
|
|
|
class CInputManager : public CSingleton<CInputManager>
|
|
|
|
{
|
|
|
|
public:
|
2018-04-30 21:01:23 +01:00
|
|
|
void SetButtonState(int, bool);
|
|
|
|
void SetAxisState(int, float);
|
2015-06-30 05:26:01 -04:00
|
|
|
};
|