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