From: havoc Date: Tue, 19 Sep 2006 05:12:07 +0000 (+0000) Subject: added GAME_DARSANA and GAME_CONTAGIONTHEORY X-Git-Tag: xonotic-v0.1.0preview~3796 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=1b445d99b7ccfd877ffba3405e401419da49d727 added GAME_DARSANA and GAME_CONTAGIONTHEORY git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6593 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/common.c b/common.c index 21c0eb6d..ed92588f 100644 --- a/common.c +++ b/common.c @@ -970,6 +970,12 @@ static const gamemode_info_t gamemode_info [] = // GAME_DEFEATINDETAIL2 // COMMANDLINEOPTION: Game: -did2 runs the game Defeat In Detail 2 { "did2", "-did2", "Defeat In Detail 2", "data", NULL, "did2_", "did2" }, +// GAME_DARSANA +// COMMANDLINEOPTION: Game: -darsana runs the game Darsana +{ "darsana", "-darsana", "Darsana", "ddata", NULL, "darsana", "darsana" }, +// GAME_CONTAGIONTHEORY +// COMMANDLINEOPTION: Game: -contagiontheory runs the game Contagion Theory +{ "contagiontheory", "-contagiontheory", "Contagion Theory", "ctdata", NULL, "ct", "contagiontheory" }, }; void COM_InitGameType (void) diff --git a/common.h b/common.h index 0cb18bfb..485d3eb6 100644 --- a/common.h +++ b/common.h @@ -267,6 +267,8 @@ typedef enum gamemode_e GAME_NETHERWORLD, GAME_THEHUNTED, GAME_DEFEATINDETAIL2, + GAME_DARSANA, + GAME_CONTAGIONTHEORY, } gamemode_t;