Options: Fix modifying or deleting of value returned by getenv
[roofball.git] / src / options.h
bloba6e186b3a39a30825fedf451c8274785caed89f3
1 #ifndef OPTIONS_H
2 #define OPTIONS_H
4 #include "optionsfile.h"
5 #include "playeroptions.h"
6 #include "SDL.h"
7 #include <string>
9 class Options {
10 public:
11 Options(const char *);
12 ~Options();
14 void Load();
15 void Save();
17 PlayerOptions pl1;
18 PlayerOptions pl2;
19 bool fullScreen;
21 private:
22 OptionsFile *oFile;
25 #endif // OPTIONS_H