10 lines
110 B
C++
10 lines
110 B
C++
#pragma once
|
|
|
|
class Config {
|
|
private:
|
|
Preferences *prefs;
|
|
public:
|
|
Config();
|
|
bool loadConfig();
|
|
};
|