kelson8
eca8fe3c1d
Add functions for text in imgui with the text_functions file. Add keystates file.
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();
|
|
};
|
|
|