mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-21 17:34:57 -05:00
19 lines
267 B
C++
19 lines
267 B
C++
#pragma once
|
|
#include <map>
|
|
|
|
|
|
#ifndef SETTINGS_H
|
|
#define SETTINGS_H
|
|
|
|
using namespace std;
|
|
class Settings {
|
|
map<string, string> settings;
|
|
public:
|
|
void load(string);
|
|
map<string, string> getMap();
|
|
private:
|
|
void addToMap(string, string);
|
|
|
|
};
|
|
|
|
#endif |