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

10 lines
131 B
C++

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