mirror of
https://github.com/ioquake/jedi-academy.git
synced 2024-11-13 00:24:18 +00:00
14 lines
363 B
C
14 lines
363 B
C
// Copyright (C) 2000-2002 Raven Software, Inc.
|
|
//
|
|
#include "../win32/AutoVersion.h"
|
|
|
|
// Current version of the multi player game
|
|
#ifdef _DEBUG
|
|
#define Q3_VERSION "(debug)JAmp: v"VERSION_STRING_DOTTED
|
|
#elif defined FINAL_BUILD
|
|
#define Q3_VERSION "JAmp: v"VERSION_STRING_DOTTED
|
|
#else
|
|
#define Q3_VERSION "(internal)JAmp: v"VERSION_STRING_DOTTED
|
|
#endif
|
|
|
|
//end
|