repo.or.cz
/
EroBeats.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
removed gl .c files
[EroBeats.git]
/
Release
/
SettingsInit.h
blob
97c2f53ad6b16392b5d4ce7d12ea0381f6923b46
1
#pragma once
2
#include
"FileIO.h"
3
#include
"ResourceMaster.h"
4
5
class
SettingsInit
6
{
7
public
:
8
SettingsInit
(
FileIO
*
fio
,
ResourceMaster
*
rsc
);
9
~
SettingsInit
();
10
11
FileIO
*
fio
;
12
ResourceMaster
*
rsc
;
13
14
int
screenRes
;
15
int
sfxVol
;
16
int
bgmVol
;
17
int
language
;
18
19
void
loadLangauges
(
int
la
);
20
void
setSfxVol
(
int
vol
);
21
void
setBgmVol
(
int
vol
);
22
int
getResolution
();
23
};
24