Files
sdrpp/core/src/gui/style.h
2021-10-03 01:48:44 +02:00

19 lines
371 B
C++

#pragma once
#include <imgui.h>
#include <string>
namespace style {
extern ImFont* baseFont;
extern ImFont* bigFont;
extern ImFont* hugeFont;
bool setDefaultStyle(std::string resDir);
bool loadFonts(std::string resDir);
void beginDisabled();
void endDisabled();
void testtt();
}
namespace ImGui {
void LeftLabel(const char* text);
}