mirror of
https://github.com/libretro/Play-.git
synced 2024-11-30 20:21:25 +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:
|
|
|
|
};
|