kelson8
eca8fe3c1d
Add functions for text in imgui with the text_functions file. Add keystates file.
16 lines
270 B
C++
16 lines
270 B
C++
#include "imgui.h"
|
|
#include "imgui_impl_dx9.h"
|
|
|
|
#if _WIN32
|
|
#include "imgui_impl_win32.h"
|
|
#include <Windows.h>
|
|
#include "../util/keystates.h"
|
|
#endif
|
|
|
|
// My code
|
|
#include "text_functions.h"
|
|
|
|
void TextFunctions::SetBulletText(const char* text)
|
|
{
|
|
ImGui::BulletText(text);
|
|
} |