repo.or.cz
/
roofball.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Options: Fix modifying or deleting of value returned by getenv
[roofball.git]
/
src
/
options.h
blob
a6e186b3a39a30825fedf451c8274785caed89f3
1
#ifndef OPTIONS_H
2
#define OPTIONS_H
3
4
#include
"optionsfile.h"
5
#include
"playeroptions.h"
6
#include
"SDL.h"
7
#include <string>
8
9
class
Options
{
10
public
:
11
Options
(
const char
*);
12
~
Options
();
13
14
void
Load
();
15
void
Save
();
16
17
PlayerOptions pl1
;
18
PlayerOptions pl2
;
19
bool
fullScreen
;
20
21
private
:
22
OptionsFile
*
oFile
;
23
};
24
25
#endif
// OPTIONS_H