Play-/Source/ui_android/SettingsManager.h
2015-07-08 23:15:06 -04:00

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:
};