# | Line 13 | Line 13 | class RenegadeConfig | |
---|---|---|
13 | { | |
14 | private: | |
15 | string file; | |
16 | + | bool linux; |
17 | stringstream text; | |
18 | vector<string> maps; | |
19 | public: | |
20 | < | RenegadeConfig(const string& file) { this->file = "data/" + file; } |
20 | > | RenegadeConfig(const string& file) |
21 | > | { |
22 | > | this->file = "data/" + file; |
23 | > | linux = false; |
24 | > | } |
25 | ~RenegadeConfig() {} | |
26 | bool load(); | |
27 | void save(); |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |