diff options
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -36,7 +36,9 @@ #define TMW_DATADIR "" #endif - +/* + * Client different States + */ enum { EXIT_STATE, LOADDATA_STATE, @@ -65,6 +67,15 @@ enum { LEN_MIN_PASSWORD = 4 }; +// Default game values +// ------------------- +// Screen +const short defaultScreenWidth = 800; +const short defaultScreenHeight = 600; +// Sound +const short defaultSfxVolume = 100; +const short defaultMusicVolume = 60; + extern char n_server, n_character; extern unsigned char state; extern std::string errorMessage; |