Clean up
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
#include <windows.h>
|
||||
|
||||
namespace TLAC::Input
|
||||
{
|
||||
const int KEYBOARD_KEYS = 0xFF;
|
||||
|
||||
struct KeyboardState
|
||||
{
|
||||
BYTE KeyStates[KEYBOARD_KEYS];
|
||||
|
||||
bool IsDown(BYTE keycode);
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user