mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 22:51:37 +00:00
7df744f9e9
came from as soon as I actually finish doing it since it has to be done by hand to preserve Copyright notices and file descriptions.
57 lines
1.5 KiB
C
57 lines
1.5 KiB
C
/*
|
|
cvars.h
|
|
|
|
(description)
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
Copyright (C) 1999,2000 contributors of the QuakeForge project
|
|
Please see the file "AUTHORS" for a list of contributors
|
|
|
|
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:
|
|
|
|
Free Software Foundation, Inc.
|
|
59 Temple Place - Suite 330
|
|
Boston, MA 02111-1307, USA
|
|
|
|
$Id$
|
|
*/
|
|
|
|
#ifndef _CVARS_H
|
|
#define _CVARS_H
|
|
|
|
extern cvar_t *gl_flashblend;
|
|
|
|
|
|
// From r_local.h
|
|
extern cvar_t *r_draworder;
|
|
extern cvar_t *r_speeds;
|
|
extern cvar_t *r_timegraph;
|
|
extern cvar_t *r_graphheight;
|
|
extern cvar_t *r_clearcolor;
|
|
extern cvar_t *r_waterwarp;
|
|
extern cvar_t *r_fullbright;
|
|
extern cvar_t *r_drawentities;
|
|
extern cvar_t *r_aliasstats;
|
|
extern cvar_t *r_dspeeds;
|
|
extern cvar_t *r_drawflat;
|
|
extern cvar_t *r_ambient;
|
|
extern cvar_t *r_reportsurfout;
|
|
extern cvar_t *r_maxsurfs;
|
|
extern cvar_t *r_numsurfs;
|
|
extern cvar_t *r_reportedgeout;
|
|
extern cvar_t *r_maxedges;
|
|
extern cvar_t *r_numedges;
|
|
|
|
#endif /* _CVARS_H */
|