Play-/Source/ui_qt/DebugSupport/DebugSupportSettings.h

19 lines
333 B
C
Raw Permalink Normal View History

#pragma once
#include "Config.h"
#include "Singleton.h"
class CDebugSupportSettings : public CSingleton<CDebugSupportSettings>
{
public:
void Initialize(Framework::CConfig*);
2022-04-10 10:52:53 -04:00
std::string GetMonospaceFontFaceName();
int GetMonospaceFontSize();
2022-04-10 10:52:53 -04:00
private:
void RegisterPreferences();
2022-04-10 10:52:53 -04:00
Framework::CConfig* m_config = nullptr;
};