mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
-imgui_theme "modern" = Respawn theme. -imgui_theme "legacy" = Valve theme. No args = default theme.
31 lines
602 B
C++
31 lines
602 B
C++
#pragma once
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Internals
|
|
int Stricmp(const char* s1, const char* s2);
|
|
int Strnicmp(const char* s1, const char* s2, int n);
|
|
char* Strdup(const char* s);
|
|
void Strtrim(char* s);
|
|
|
|
class ImGuiConfig
|
|
{
|
|
public:
|
|
struct
|
|
{
|
|
int m_nBind0 = VK_OEM_3;
|
|
int m_nBind1 = VK_INSERT;
|
|
} IConsole_Config;
|
|
|
|
struct
|
|
{
|
|
int m_nBind0 = VK_HOME;
|
|
int m_nBind1 = VK_F10;
|
|
} IBrowser_Config;
|
|
|
|
void Load();
|
|
void Save();
|
|
int InitStyle() const;
|
|
};
|
|
|
|
extern ImGuiConfig* g_pImGuiConfig;
|