ImGuiTest/util/text_functions.cpp
kelson8 eca8fe3c1d Move main menu into its own file. Modify text file functions and rename file.
Add functions for text in imgui with the text_functions file.
Add keystates file.
2024-06-18 13:13:26 -04:00

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);
}