ddnet/src/engine/config_variables.h

15 lines
459 B
C
Raw Normal View History

2007-06-01 12:24:13 +00:00
#include "../game/game_variables.h"
2007-06-01 12:18:43 +00:00
2007-07-13 13:40:04 +00:00
MACRO_CONFIG_INT(screen_width, 800, 0, 0)
MACRO_CONFIG_INT(screen_height, 600, 0, 0)
2007-07-21 16:33:01 +00:00
MACRO_CONFIG_INT(fullscreen, 1, 0, 1)
MACRO_CONFIG_INT(color_depth, 24, 16, 24)
2007-07-21 17:43:00 +00:00
MACRO_CONFIG_INT(volume, 200, 0, 255)
2007-07-13 13:40:04 +00:00
MACRO_CONFIG_STR(player_name, 32, "nameless tee")
MACRO_CONFIG_STR(clan_name, 32, "")
MACRO_CONFIG_STR(password, 32, "")
2007-07-21 21:28:56 +00:00
MACRO_CONFIG_STR(masterserver, 128, "master.teewars.com")
2007-07-13 13:40:04 +00:00
MACRO_CONFIG_INT(sv_port, 8303, 0, 0)