mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
18 lines
333 B
C++
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;
|
|
};
|