NS/releases/3.2.0/source/mod/AvHClientVariables.h
tankefugl 9bbe11742d o Reverted the endgame messages
o Made hivesight text less intrusive by making it more transparent the further away from the center of the screen it is
o Added cl_hidebliptext (default 0) which when set to 1 will turn off alien hivesight text

git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@421 67975925-1194-0748-b3d5-c16f83f1a3a1
2006-04-26 23:06:07 +00:00

61 lines
2.3 KiB
C

//======== (C) Copyright 2002 Charles G. Cleveland All rights reserved. =========
//
// The copyright to the contents herein is the property of Charles G. Cleveland.
// The contents may be used and/or copied only with the written permission of
// Charles G. Cleveland, or in accordance with the terms and conditions stipulated in
// the agreement/contract under which the contents have been supplied.
//
// Purpose:
//
// $Workfile: AvHClientVariables.h $
// $Date: 2002/08/02 22:02:02 $
//
//-------------------------------------------------------------------------------
// $Log: AvHClientVariables.h,v $
// Revision 1.6 2002/08/02 22:02:02 Flayra
// - Renamed centerid variable (because it tells info about everything, not just players)
//
// Revision 1.5 2002/05/23 02:34:00 Flayra
// - Post-crash checkin. Restored @Backup from around 4/16. Contains changes for last four weeks of development.
//
//===============================================================================
#ifndef AVH_CLIENTVARIABLES_H
#define AVH_CLIENTVARIABLES_H
#include "common/cvardef.h"
extern cvar_t* cl_cmhotkeys;
extern cvar_t* cl_highdetail;
extern cvar_t* cl_musicenabled;
extern cvar_t* cl_musicdelay;
extern cvar_t* cl_musicvolume;
extern cvar_t* cl_particleinfo;
extern cvar_t* cl_quickselecttime;
extern cvar_t* cl_musicdir;
// Variables
#define kvAutoHelp "cl_autohelp"
// puzl: 1064 The cl var that controls the display of labelled minimaps
#define kvLabelMaps "cl_labelmaps"
// :puzl
// tankefugl: 0001070 - enables forced gamma ramp loading
#define kvGammaRamp "cl_gammaramp"
#define kvHideBlipText "cl_hidebliptext"
#define kvCustomCrosshair "cl_customcrosshair"
// :tankefugl
#define kvCMHotKeys "cl_cmhotkeys"
#define kvForceDefaultFOV "cl_forcedefaultfov"
#define kvCenterEntityID "cl_centerentityid"
#define kvHighDetail "cl_highdetail"
#define kvCMHotkeys "cl_cmhotkeys"
#define kvMusicEnabled "cl_musicenabled"
#define kvMusicDirectory "cl_musicdirectory"
#define kvMusicDelay "cl_musicdelay"
#define kvMusicVolume "cl_musicvolume"
#define kvParticleInfo "cl_particleinfo"
#define kvQuickSelectTime "cl_quickselecttime"
#define kvDynamicLights "cl_dynamiclights"
#define kvBuildMessages "cl_buildmessages"
#endif