diff --git a/configure.in b/configure.in index 55418f5..180b308 100644 --- a/configure.in +++ b/configure.in @@ -61,7 +61,9 @@ AC_CONFIG_FILES([Makefile src/Makefile game/Makefile game/baseq2/Makefile - game/ctf/Makefile]) + game/ctf/Makefile + game/xatrix/Makefile + game/rogue/Makefile]) # ref_gl/Makefile # ref_soft/Makefile]) AC_OUTPUT diff --git a/game/game.h b/game/game.h index 1621ec2..745e3b9 100644 --- a/game/game.h +++ b/game/game.h @@ -1,25 +1,31 @@ -/* -Copyright (C) 1997-2001 Id Software, Inc. +/* $Id$ + * + * game dll information visible to server + * + * Copyright (C) 1997-2001 Id Software, Inc. + * Copyright (c) 2002 The Quakeforge Project. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + * See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +#ifndef __GAME_H__ +#define __GAME_H__ -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -See the GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -*/ #include "gcc_attr.h" -// game.h -- game dll information visible to server #define GAME_API_VERSION 3 @@ -242,3 +248,5 @@ typedef struct } game_export_t; game_export_t *GetGameApi (game_import_t *import); + +#endif /* __GAME_H__ */