mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-08 12:39:36 -06:00
14 lines
325 B
C++
14 lines
325 B
C++
#include "welcome_window.h"
|
|
|
|
static WelcomeWindow g_window;
|
|
|
|
void WelcomeWindow::Draw()
|
|
{
|
|
if (Begin())
|
|
{
|
|
ImGui::TextColored({ 1, 0, 0, 1 }, "!!! ATTENTION !!!");
|
|
ImGui::Text("For development use only.\nAny changes made here may cause unexpected behaviour.\nUse at your own risk!");
|
|
}
|
|
End();
|
|
}
|