mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 06:07:56 +03:00
19 lines
336 B
C
19 lines
336 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;
|
||
|
};
|