blob: 6c94e1bae8a4f3917d76732b5ae8250c5ea14490 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef TRACKER_CONFIG_H_36CDD648
#define TRACKER_CONFIG_H_36CDD648
#include <string>
class TrackerConfig {
public:
void Load();
void Save();
std::string ap_server;
std::string ap_player;
std::string ap_password;
bool asked_to_check_for_updates = false;
bool should_check_for_updates = false;
bool hybrid_areas = false;
};
TrackerConfig& GetTrackerConfig();
#endif /* end of include guard: TRACKER_CONFIG_H_36CDD648 */
|