mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-22 01:44:49 -05:00
15 lines
325 B
C++
15 lines
325 B
C++
#pragma once
|
|
#include <map>
|
|
|
|
using namespace std;
|
|
class Settings {
|
|
map<string, string> settings;
|
|
public:
|
|
void load();
|
|
map<string, string> getMap();
|
|
string getSettingsFilePath();
|
|
private:
|
|
string settingsFilePath = "..\\..\\data\\obs-plugins\\SceneSwitcher\\settings.txt";
|
|
void addToMap(string, string);
|
|
};
|