Play-/Source/ui_qt/DebugSupport/DebugSupportSettings.h
Jean-Philip Desjardins 6db0142447 Style fix.
2022-04-12 10:24:50 -04:00

18 lines
333 B
C++

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