DarkPlaces
Game engine based on the Quake 1 engine by id Software, developed by LadyHavoc
 
darkplaces.h
Go to the documentation of this file.
1/*
2Copyright (C) 2020 Ashley Rose Hale (LadyHavoc)
3Copyright (C) 2020 David Knapp (Cloudwalk)
4
5This program is free software; you can redistribute it and/or
6modify it under the terms of the GNU General Public License
7as published by the Free Software Foundation; either version 2
8of the License, or (at your option) any later version.
9
10This program is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
14See the GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20*/
21
22/* darkplaces.h - Master definitions file for Darkplaces engine */
23
24#ifndef DARKPLACES_H
25#define DARKPLACES_H
26
27extern const char *buildstring;
28extern char engineversion[128];
29
30#ifdef __APPLE__
31# include <TargetConditionals.h>
32#endif
33
34#include <sys/types.h>
35#include <ctype.h>
36#include <math.h>
37#include <string.h>
38#include <stdarg.h>
39#include <stdio.h>
40#include <stdlib.h>
41#include <limits.h>
42
43#include "sys.h"
44#include "qtypes.h"
45#include "qdefs.h"
46#include "zone.h"
47#include "thread.h"
48#include "com_game.h"
49#include "com_infostring.h"
50#include "common.h"
51#include "filematch.h"
52#include "fs.h"
53#include "host.h"
54#include "cvar.h"
55#include "cmd.h"
56#include "console.h"
57#include "lhnet.h"
58#include "mathlib.h"
59#include "matrixlib.h"
60
61#endif
char engineversion[128]
version string for the corner of the console, crash messages, status command, etc
Definition host.c:305
const char * buildstring
Definition builddate.c:5