mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
17 lines
308 B
C
17 lines
308 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include "Singleton.h"
|
||
|
|
||
|
class CSettingsManager : public CSingleton<CSettingsManager>
|
||
|
{
|
||
|
public:
|
||
|
void Save();
|
||
|
|
||
|
void RegisterPreferenceBoolean(const std::string&, bool);
|
||
|
bool GetPreferenceBoolean(const std::string&);
|
||
|
void SetPreferenceBoolean(const std::string&, bool);
|
||
|
|
||
|
private:
|
||
|
|
||
|
};
|