]> git.jsancho.org Git - lugaru.git/blob - Source/Settings.h
ac14df3dad43389d7c4e338b83b72640ef9562ed
[lugaru.git] / Source / Settings.h
1 /*
2 Copyright (C) 2003, 2010 - Wolfire Games
3 Copyright (C) 2010-2016 - Lugaru contributors (see AUTHORS file)
4
5 This file is part of Lugaru.
6
7 Lugaru is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 Lugaru is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Lugaru.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #ifndef SETTINGS_H_
22 #define SETTINGS_H_
23
24 #include "Game.h"
25
26 extern float usermousesensitivity;
27 extern bool ismotionblur;
28 extern bool floatjump;
29 extern bool mousejump;
30 extern bool ambientsound;
31 extern int bloodtoggle;
32 extern bool autoslomo;
33 extern bool foliage;
34 extern bool musictoggle;
35 extern bool trilinear;
36 extern bool decals;
37 extern bool invertmouse;
38 extern float gamespeed;
39 extern float oldgamespeed;
40 extern int difficulty;
41 extern bool damageeffects;
42 extern bool texttoggle;
43 extern bool devtools;
44 extern bool showpoints;
45 extern bool showdamagebar;
46 extern bool alwaysblur;
47 extern bool immediate;
48 extern bool velocityblur;
49 extern float volume;
50 extern int detail;
51 extern int kContextWidth;
52 extern int kContextHeight;
53 extern float screenwidth, screenheight;
54 extern bool fullscreen;
55
56 void DefaultSettings();
57 void SaveSettings();
58 bool LoadSettings();
59
60
61 #endif