Files
2019-07-30 13:48:28 +02:00

9 lines
126 B
C++

#include "XinputState.h"
namespace TLAC::Input
{
bool XinputState::IsDown(BYTE keycode)
{
return KeyStates[keycode];
}
}