diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-07-22 17:44:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-07-22 17:44:11 +0300 |
commit | 1995e723df5d5aef32b289c0122493ee6fe18b0e (patch) | |
tree | b8dc80f75ac17732c80574fe40910d02e8b90a1b /src/settings.h | |
parent | 35263d0f161f59f2dec6586c61970eaf1ce2f6f1 (diff) | |
download | plus-1995e723df5d5aef32b289c0122493ee6fe18b0e.tar.gz plus-1995e723df5d5aef32b289c0122493ee6fe18b0e.tar.bz2 plus-1995e723df5d5aef32b289c0122493ee6fe18b0e.tar.xz plus-1995e723df5d5aef32b289c0122493ee6fe18b0e.zip |
Move "map draw type" variable into settings.
Diffstat (limited to 'src/settings.h')
-rw-r--r-- | src/settings.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/settings.h b/src/settings.h index e64a4fba3..21b0fdf91 100644 --- a/src/settings.h +++ b/src/settings.h @@ -23,6 +23,8 @@ #include "options.h" +#include "resources/map/maptype.h" + #include <string> #include <vector> @@ -63,6 +65,7 @@ class Settings final magicAttackType(0U), pvpAttackType(0U), imitationMode(0U), + mapDrawType(MapType::NORMAL), persistentIp(true), limitFps(false), inputFocused(true), @@ -101,6 +104,7 @@ class Settings final unsigned int magicAttackType; unsigned int pvpAttackType; unsigned int imitationMode; + MapType::MapType mapDrawType; bool persistentIp; bool limitFps; bool inputFocused; |