12 lines
130 B
C
12 lines
130 B
C
|
#pragma once
|
||
|
#if _WIN32
|
||
|
#include <Windows.h>
|
||
|
#endif
|
||
|
|
||
|
class KeyStates {
|
||
|
public:
|
||
|
static char* charTest();
|
||
|
static void test();
|
||
|
};
|
||
|
|