Files
SDRPlusPlus/core/src/gui/style.h
2020-12-22 22:39:24 +01:00

15 lines
315 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 setDarkStyle(std::string resDir);
void beginDisabled();
void endDisabled();
void testtt();
}