2012-05-27 23:50:03 +00:00
|
|
|
|
|
|
|
/*
|
2012-05-28 03:33:41 +00:00
|
|
|
This code is based on source provided under the terms of the Id Software
|
|
|
|
LIMITED USE SOFTWARE LICENSE AGREEMENT, a copy of which is included with the
|
|
|
|
GtkRadiant sources (see LICENSE_ID). If you did not receive a copy of
|
|
|
|
LICENSE_ID, please contact Id Software immediately at info@idsoftware.com.
|
2012-05-27 23:50:03 +00:00
|
|
|
|
2012-05-28 03:33:41 +00:00
|
|
|
All changes and additions to the original source which have been developed by
|
|
|
|
other contributors (see CONTRIBUTORS) are provided under the terms of the
|
|
|
|
license the contributors choose (see LICENSE), to the extent permitted by the
|
|
|
|
LICENSE_ID. If you did not receive a copy of the contributor license,
|
|
|
|
please contact the GtkRadiant maintainers at info@gtkradiant.com immediately.
|
2012-05-27 23:50:03 +00:00
|
|
|
|
2012-05-28 03:33:41 +00:00
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
|
|
|
|
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
|
|
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
2012-05-27 23:50:03 +00:00
|
|
|
|
|
|
|
/* ydnar: for -game support */
|
|
|
|
typedef struct game_s
|
|
|
|
{
|
2012-05-28 03:33:41 +00:00
|
|
|
char *arg; /* -game matches this */
|
|
|
|
char *gamePath; /* main game data dir */
|
|
|
|
char *homeBasePath; /* home sub-dir on unix */
|
|
|
|
char *magic; /* magic word for figuring out base path */
|
|
|
|
qboolean wolfLight; /* when true, lights work like wolf q3map */
|
|
|
|
int bspVersion; /* BSP version to use */
|
2012-05-27 23:50:03 +00:00
|
|
|
}
|
|
|
|
game_t;
|