9 lines
126 B
C++
9 lines
126 B
C++
#include "XinputState.h"
|
|
|
|
namespace TLAC::Input
|
|
{
|
|
bool XinputState::IsDown(BYTE keycode)
|
|
{
|
|
return KeyStates[keycode];
|
|
}
|
|
} |