mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 13:30:06 +00:00
22 lines
316 B
C++
22 lines
316 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace qt
|
|
{
|
|
namespace manager
|
|
{
|
|
namespace SettingsManager
|
|
{
|
|
|
|
void Initialize();
|
|
void ReadSettings(const std::string& settingsPath);
|
|
void SaveSettings();
|
|
void Shutdown();
|
|
|
|
} // namespace SettingsManager
|
|
} // namespace manager
|
|
} // namespace qt
|
|
} // namespace scwx
|