mirror of
https://github.com/libretro/Play-.git
synced 2024-12-02 22:46:23 +00: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:
|
||
|
|
||
|
};
|