2020-08-16 03:39:05 +02:00
|
|
|
#pragma once
|
2020-11-30 21:17:36 +01:00
|
|
|
#include <imgui.h>
|
2020-12-22 22:39:24 +01:00
|
|
|
#include <string>
|
2020-08-16 03:39:05 +02:00
|
|
|
|
|
|
|
namespace style {
|
2020-11-30 21:17:36 +01:00
|
|
|
extern ImFont* baseFont;
|
|
|
|
extern ImFont* bigFont;
|
|
|
|
extern ImFont* hugeFont;
|
|
|
|
|
2020-12-22 22:39:24 +01:00
|
|
|
bool setDefaultStyle(std::string resDir);
|
2021-06-23 21:45:38 +02:00
|
|
|
bool loadFonts(std::string resDir);
|
2020-08-16 03:39:05 +02:00
|
|
|
void beginDisabled();
|
|
|
|
void endDisabled();
|
2020-09-19 12:48:34 +02:00
|
|
|
void testtt();
|
2021-08-31 18:39:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace ImGui {
|
|
|
|
void LeftLabel(char* text);
|
2020-08-16 03:39:05 +02:00
|
|
|
}
|