From 58c150d8f646b2dc93733f399e6c71bf793ee946 Mon Sep 17 00:00:00 2001 From: Sam V Date: Thu, 18 Nov 2021 19:31:43 +0100 Subject: [PATCH] Convert include guards that use !defined to pragma once Resolves #50 --- cl_dll/GameStudioModelRenderer.h | 6 ------ cl_dll/StudioModelRenderer.h | 6 ------ cl_dll/com_weapons.h | 7 +------ cl_dll/demo.h | 4 ---- cl_dll/ev_hldm.h | 5 +---- cl_dll/eventscripts.h | 6 ++---- cl_dll/in_defs.h | 5 ----- cl_dll/kbutton.h | 4 ---- cl_dll/studio_util.h | 6 ------ cl_dll/view.h | 4 ---- common/beamdef.h | 7 +------ common/cl_entity.h | 7 +------ common/com_model.h | 7 +------ common/con_nprint.h | 7 +------ common/demo_api.h | 7 +------ common/dlight.h | 7 +------ common/entity_state.h | 7 +------ common/entity_types.h | 6 ++---- common/event_api.h | 7 +------ common/event_args.h | 7 +------ common/event_flags.h | 7 +------ common/net_api.h | 6 ------ common/particledef.h | 7 +------ common/pmtrace.h | 7 +------ common/qfont.h | 7 +------ common/r_efx.h | 7 +------ common/r_studioint.h | 6 ------ common/ref_params.h | 6 ++---- common/screenfade.h | 6 ------ common/studio_event.h | 7 +------ common/triangleapi.h | 7 +------ common/weaponinfo.h | 7 +------ engine/edict.h | 7 +------ pm_shared/pm_defs.h | 5 +---- pm_shared/pm_info.h | 7 +------ pm_shared/pm_materials.h | 5 +---- pm_shared/pm_movevars.h | 6 ++---- pm_shared/pm_shared.h | 5 +---- 38 files changed, 32 insertions(+), 205 deletions(-) diff --git a/cl_dll/GameStudioModelRenderer.h b/cl_dll/GameStudioModelRenderer.h index 6859cebe8..98b6f695c 100644 --- a/cl_dll/GameStudioModelRenderer.h +++ b/cl_dll/GameStudioModelRenderer.h @@ -5,11 +5,7 @@ // $NoKeywords: $ //============================================================================= -#if !defined( GAMESTUDIOMODELRENDERER_H ) -#define GAMESTUDIOMODELRENDERER_H -#if defined( _WIN32 ) #pragma once -#endif /* ==================== @@ -22,5 +18,3 @@ class CGameStudioModelRenderer : public CStudioModelRenderer public: CGameStudioModelRenderer(); }; - -#endif // GAMESTUDIOMODELRENDERER_H \ No newline at end of file diff --git a/cl_dll/StudioModelRenderer.h b/cl_dll/StudioModelRenderer.h index 445dd5127..0677c0b8c 100644 --- a/cl_dll/StudioModelRenderer.h +++ b/cl_dll/StudioModelRenderer.h @@ -5,11 +5,7 @@ // $NoKeywords: $ //============================================================================= -#if !defined ( STUDIOMODELRENDERER_H ) -#define STUDIOMODELRENDERER_H -#if defined( _WIN32 ) #pragma once -#endif /* ==================== @@ -185,5 +181,3 @@ class CStudioModelRenderer float (*m_pbonetransform) [ MAXSTUDIOBONES ][ 3 ][ 4 ]; float (*m_plighttransform)[ MAXSTUDIOBONES ][ 3 ][ 4 ]; }; - -#endif // STUDIOMODELRENDERER_H \ No newline at end of file diff --git a/cl_dll/com_weapons.h b/cl_dll/com_weapons.h index 05aea4396..f38bf6cbd 100644 --- a/cl_dll/com_weapons.h +++ b/cl_dll/com_weapons.h @@ -7,11 +7,8 @@ // com_weapons.h // Shared weapons common function prototypes -#if !defined( COM_WEAPONSH ) -#define COM_WEAPONSH -#ifdef _WIN32 + #pragma once -#endif #include "Exports.h" @@ -40,5 +37,3 @@ extern Vector v_angles; extern Vector v_client_aimangles; extern float g_lastFOV; extern struct local_state_s *g_finalstate; - -#endif \ No newline at end of file diff --git a/cl_dll/demo.h b/cl_dll/demo.h index 3163ef387..cd09c1db9 100644 --- a/cl_dll/demo.h +++ b/cl_dll/demo.h @@ -5,8 +5,6 @@ // $NoKeywords: $ //============================================================================= -#if !defined( DEMOH ) -#define DEMOH #pragma once // Types of demo messages we can write/parse @@ -23,5 +21,3 @@ extern int g_demosniperdamage; extern float g_demosniperorg[3]; extern float g_demosniperangles[3]; extern float g_demozoom; - -#endif \ No newline at end of file diff --git a/cl_dll/ev_hldm.h b/cl_dll/ev_hldm.h index 099b7005c..411bc5f34 100644 --- a/cl_dll/ev_hldm.h +++ b/cl_dll/ev_hldm.h @@ -5,8 +5,7 @@ // $NoKeywords: $ //============================================================================= -#if !defined ( EV_HLDMH ) -#define EV_HLDMH +#pragma once void EV_HLDM_GunshotDecalTrace( pmtrace_t *pTrace, char *decalName ); void EV_HLDM_DecalGunshot( pmtrace_t *pTrace, int iBulletType ); @@ -36,5 +35,3 @@ void EV_SnarkFire(event_args_t* args); void EV_TrainPitchAdjust(event_args_t* args); - -#endif // EV_HLDMH \ No newline at end of file diff --git a/cl_dll/eventscripts.h b/cl_dll/eventscripts.h index d8d9d8e5e..1dab6a2f1 100644 --- a/cl_dll/eventscripts.h +++ b/cl_dll/eventscripts.h @@ -6,8 +6,8 @@ //============================================================================= // eventscripts.h -#if !defined ( EVENTSCRIPTSH ) -#define EVENTSCRIPTSH + +#pragma once // Some of these are HL/TFC specific? void EV_EjectBrass( float *origin, float *velocity, float rotation, int model, int soundtype ); @@ -20,5 +20,3 @@ void EV_CreateTracer( float *start, float *end ); struct cl_entity_s *GetEntity( int idx ); struct cl_entity_s *GetViewEntity(); void EV_MuzzleFlash(); - -#endif // EVENTSCRIPTSH diff --git a/cl_dll/in_defs.h b/cl_dll/in_defs.h index 628504409..bd426ab03 100644 --- a/cl_dll/in_defs.h +++ b/cl_dll/in_defs.h @@ -5,8 +5,6 @@ // $NoKeywords: $ //============================================================================= -#if !defined( IN_DEFSH ) -#define IN_DEFSH #pragma once // up / down @@ -15,6 +13,3 @@ #define YAW 1 // fall over #define ROLL 2 - - -#endif \ No newline at end of file diff --git a/cl_dll/kbutton.h b/cl_dll/kbutton.h index 23cd8accf..fb25a58e2 100644 --- a/cl_dll/kbutton.h +++ b/cl_dll/kbutton.h @@ -5,8 +5,6 @@ // $NoKeywords: $ //============================================================================= -#if !defined( KBUTTONH ) -#define KBUTTONH #pragma once typedef struct kbutton_s @@ -14,5 +12,3 @@ typedef struct kbutton_s int down[2]; // key nums holding it down int state; // low bit is down state } kbutton_t; - -#endif // !KBUTTONH \ No newline at end of file diff --git a/cl_dll/studio_util.h b/cl_dll/studio_util.h index 294c2aa33..2058e50f3 100644 --- a/cl_dll/studio_util.h +++ b/cl_dll/studio_util.h @@ -5,11 +5,7 @@ // $NoKeywords: $ //============================================================================= -#if !defined( STUDIO_UTIL_H ) -#define STUDIO_UTIL_H -#if defined( WIN32 ) #pragma once -#endif #ifndef PITCH // MOVEMENT INFO @@ -32,5 +28,3 @@ void MatrixCopy( float in[3][4], float out[3][4] ); void QuaternionMatrix( vec4_t quaternion, float (*matrix)[4] ); void QuaternionSlerp( vec4_t p, vec4_t q, float t, vec4_t qt ); void AngleQuaternion( float *angles, vec4_t quaternion ); - -#endif // STUDIO_UTIL_H \ No newline at end of file diff --git a/cl_dll/view.h b/cl_dll/view.h index 8c2de194f..465ea53f7 100644 --- a/cl_dll/view.h +++ b/cl_dll/view.h @@ -5,11 +5,7 @@ // $NoKeywords: $ //============================================================================= -#if !defined ( VIEWH ) -#define VIEWH #pragma once void V_StartPitchDrift(); void V_StopPitchDrift(); - -#endif // !VIEWH \ No newline at end of file diff --git a/common/beamdef.h b/common/beamdef.h index bd764e664..fdc9a55e7 100644 --- a/common/beamdef.h +++ b/common/beamdef.h @@ -12,11 +12,8 @@ * without written permission from Valve LLC. * ****/ -#if !defined ( BEAMDEFH ) -#define BEAMDEFH -#ifdef _WIN32 + #pragma once -#endif #define FBEAM_STARTENTITY 0x00000001 #define FBEAM_ENDENTITY 0x00000002 @@ -58,5 +55,3 @@ struct beam_s struct model_s *pFollowModel; struct particle_s *particles; }; - -#endif diff --git a/common/cl_entity.h b/common/cl_entity.h index da33aa597..46feb75bd 100644 --- a/common/cl_entity.h +++ b/common/cl_entity.h @@ -13,11 +13,8 @@ * ****/ // cl_entity.h -#if !defined( CL_ENTITYH ) -#define CL_ENTITYH -#ifdef _WIN32 + #pragma once -#endif typedef struct efrag_s { @@ -111,5 +108,3 @@ struct cl_entity_s int visframe; // last frame this entity was found in an active leaf colorVec cvFloorColor; }; - -#endif // !CL_ENTITYH diff --git a/common/com_model.h b/common/com_model.h index b703a4a5e..523e2d4e8 100644 --- a/common/com_model.h +++ b/common/com_model.h @@ -6,11 +6,8 @@ //============================================================================= // com_model.h -#if !defined( COM_MODEL_H ) -#define COM_MODEL_H -#if defined( _WIN32 ) + #pragma once -#endif #define STUDIO_RENDER 1 #define STUDIO_EVENTS 2 @@ -350,5 +347,3 @@ typedef struct player_info_s char hashedcdkey[16]; uint64 m_nSteamID; } player_info_t; - -#endif // #define COM_MODEL_H diff --git a/common/con_nprint.h b/common/con_nprint.h index 6ebc6c636..d4eef4938 100644 --- a/common/con_nprint.h +++ b/common/con_nprint.h @@ -12,11 +12,8 @@ * without written permission from Valve LLC. * ****/ -#if !defined( CON_NPRINTH ) -#define CON_NPRINTH -#ifdef _WIN32 + #pragma once -#endif typedef struct con_nprint_s { @@ -27,5 +24,3 @@ typedef struct con_nprint_s void Con_NPrintf( int idx, char *fmt, ... ); void Con_NXPrintf( struct con_nprint_s *info, char *fmt, ... ); - -#endif diff --git a/common/demo_api.h b/common/demo_api.h index 8284a8156..a59116d09 100644 --- a/common/demo_api.h +++ b/common/demo_api.h @@ -12,11 +12,8 @@ * without written permission from Valve LLC. * ****/ -#if !defined ( DEMO_APIH ) -#define DEMO_APIH -#ifdef _WIN32 + #pragma once -#endif typedef struct demo_api_s { @@ -27,5 +24,3 @@ typedef struct demo_api_s } demo_api_t; extern demo_api_t demoapi; - -#endif diff --git a/common/dlight.h b/common/dlight.h index 3f2fa3e4f..3388a7210 100644 --- a/common/dlight.h +++ b/common/dlight.h @@ -12,11 +12,8 @@ * without written permission from Valve LLC. * ****/ -#if !defined ( DLIGHTH ) -#define DLIGHTH -#ifdef _WIN32 + #pragma once -#endif typedef struct dlight_s { @@ -29,5 +26,3 @@ typedef struct dlight_s int key; qboolean dark; // subtracts light instead of adding } dlight_t; - -#endif diff --git a/common/entity_state.h b/common/entity_state.h index 3750d421b..5ac9dcdea 100644 --- a/common/entity_state.h +++ b/common/entity_state.h @@ -12,11 +12,8 @@ * without written permission from Valve LLC. * ****/ -#if !defined( ENTITY_STATEH ) -#define ENTITY_STATEH -#ifdef _WIN32 + #pragma once -#endif // For entityType below #define ENTITY_NORMAL (1<<0) @@ -189,5 +186,3 @@ typedef struct local_state_s clientdata_t client; weapon_data_t weapondata[ 64 ]; } local_state_t; - -#endif // !ENTITY_STATEH diff --git a/common/entity_types.h b/common/entity_types.h index ff783df1a..aea668d59 100644 --- a/common/entity_types.h +++ b/common/entity_types.h @@ -13,8 +13,8 @@ * ****/ // entity_types.h -#if !defined( ENTITY_TYPESH ) -#define ENTITY_TYPESH + +#pragma once #define ET_NORMAL 0 #define ET_PLAYER 1 @@ -22,5 +22,3 @@ #define ET_BEAM 3 // BMODEL or SPRITE that was split across BSP nodes #define ET_FRAGMENTED 4 - -#endif // !ENTITY_TYPESH diff --git a/common/event_api.h b/common/event_api.h index 722dfe22c..59fffe794 100644 --- a/common/event_api.h +++ b/common/event_api.h @@ -12,11 +12,8 @@ * without written permission from Valve LLC. * ****/ -#if !defined ( EVENT_APIH ) -#define EVENT_APIH -#ifdef _WIN32 + #pragma once -#endif #define EVENT_API_VERSION 1 @@ -47,5 +44,3 @@ typedef struct event_api_s } event_api_t; extern event_api_t eventapi; - -#endif diff --git a/common/event_args.h b/common/event_args.h index 99dd49af5..19bed589d 100644 --- a/common/event_args.h +++ b/common/event_args.h @@ -12,11 +12,8 @@ * without written permission from Valve LLC. * ****/ -#if !defined( EVENT_ARGSH ) -#define EVENT_ARGSH -#ifdef _WIN32 + #pragma once -#endif // Event was invoked with stated origin #define FEVENT_ORIGIN ( 1<<0 ) @@ -46,5 +43,3 @@ typedef struct event_args_s int bparam1; int bparam2; } event_args_t; - -#endif diff --git a/common/event_flags.h b/common/event_flags.h index 43f804f78..a0764623c 100644 --- a/common/event_flags.h +++ b/common/event_flags.h @@ -12,11 +12,8 @@ * without written permission from Valve LLC. * ****/ -#if !defined( EVENT_FLAGSH ) -#define EVENT_FLAGSH -#ifdef _WIN32 + #pragma once -#endif // Skip local host for event send. #define FEV_NOTHOST (1<<0) @@ -43,5 +40,3 @@ // Only issue event client side ( from shared code ) #define FEV_CLIENT (1<<6) - -#endif diff --git a/common/net_api.h b/common/net_api.h index 49c39e7f0..94e3b29b9 100644 --- a/common/net_api.h +++ b/common/net_api.h @@ -5,11 +5,7 @@ // $NoKeywords: $ //============================================================================= -#if !defined( NET_APIH ) -#define NET_APIH -#ifdef _WIN32 #pragma once -#endif #if !defined ( NETADRH ) #include "netadr.h" @@ -95,5 +91,3 @@ typedef struct net_api_s } net_api_t; extern net_api_t netapi; - -#endif // NET_APIH \ No newline at end of file diff --git a/common/particledef.h b/common/particledef.h index c23f026b5..5bc0ab019 100644 --- a/common/particledef.h +++ b/common/particledef.h @@ -12,11 +12,8 @@ * without written permission from Valve LLC. * ****/ -#if !defined( PARTICLEDEFH ) -#define PARTICLEDEFH -#ifdef _WIN32 + #pragma once -#endif typedef enum { pt_static, @@ -53,5 +50,3 @@ typedef struct particle_s // For deathfunc, etc. unsigned char context; } particle_t; - -#endif diff --git a/common/pmtrace.h b/common/pmtrace.h index 0e036f03f..8db0d74db 100644 --- a/common/pmtrace.h +++ b/common/pmtrace.h @@ -12,11 +12,8 @@ * without written permission from Valve LLC. * ****/ -#if !defined( PMTRACEH ) -#define PMTRACEH -#ifdef _WIN32 + #pragma once -#endif typedef struct { @@ -39,5 +36,3 @@ struct pmtrace_s // Only run on server. int hitgroup; }; - -#endif diff --git a/common/qfont.h b/common/qfont.h index 2fc812953..238937fde 100644 --- a/common/qfont.h +++ b/common/qfont.h @@ -12,11 +12,8 @@ * without written permission from Valve LLC. * ****/ -#if !defined( QFONTH ) -#define QFONTH -#ifdef _WIN32 + #pragma once -#endif // Font stuff @@ -37,5 +34,3 @@ typedef struct qfont_s charinfo fontinfo[ NUM_GLYPHS ]; unsigned char data[4]; } qfont_t; - -#endif // qfont.h diff --git a/common/r_efx.h b/common/r_efx.h index f9b00403f..ac5861292 100644 --- a/common/r_efx.h +++ b/common/r_efx.h @@ -12,11 +12,8 @@ * without written permission from Valve LLC. * ****/ -#if !defined ( R_EFXH ) -#define R_EFXH -#ifdef _WIN32 + #pragma once -#endif // particle_t #if !defined( PARTICLEDEFH ) @@ -193,5 +190,3 @@ struct efx_api_s }; extern efx_api_t efx; - -#endif diff --git a/common/r_studioint.h b/common/r_studioint.h index e42b405e0..26817ccaa 100644 --- a/common/r_studioint.h +++ b/common/r_studioint.h @@ -1,8 +1,4 @@ -#if !defined( R_STUDIOINT_H ) -#define R_STUDIOINT_H -#if defined( _WIN32 ) #pragma once -#endif #define STUDIO_INTERFACE_VERSION 1 @@ -140,5 +136,3 @@ typedef struct sv_blending_interface_s int iBone, const edict_t *pEdict ); } sv_blending_interface_t; - -#endif // R_STUDIOINT_H diff --git a/common/ref_params.h b/common/ref_params.h index 90eb03f37..2ac40ccaf 100644 --- a/common/ref_params.h +++ b/common/ref_params.h @@ -12,8 +12,8 @@ * without written permission from Valve LLC. * ****/ -#if !defined( REF_PARAMSH ) -#define REF_PARAMSH + +#pragma once typedef struct ref_params_s { @@ -71,5 +71,3 @@ typedef struct ref_params_s // so long in cycles until this value is 0 (multiple views) int onlyClientDraw; // if !=0 nothing is drawn by the engine except clientDraw functions } ref_params_t; - -#endif // !REF_PARAMSH diff --git a/common/screenfade.h b/common/screenfade.h index 62c0d25a4..78cbd7681 100644 --- a/common/screenfade.h +++ b/common/screenfade.h @@ -5,11 +5,7 @@ // $NoKeywords: $ //============================================================================= -#if !defined( SCREENFADEH ) -#define SCREENFADEH -#ifdef _WIN32 #pragma once -#endif typedef struct screenfade_s { @@ -20,5 +16,3 @@ typedef struct screenfade_s byte fader, fadeg, fadeb, fadealpha; // Fade color int fadeFlags; // Fading flags } screenfade_t; - -#endif // !SCREENFADEH diff --git a/common/studio_event.h b/common/studio_event.h index c79c2100a..51f594a0d 100644 --- a/common/studio_event.h +++ b/common/studio_event.h @@ -12,11 +12,8 @@ * without written permission from Valve LLC. * ****/ -#if !defined( STUDIO_EVENTH ) -#define STUDIO_EVENTH -#ifdef _WIN32 + #pragma once -#endif typedef struct mstudioevent_s { @@ -25,5 +22,3 @@ typedef struct mstudioevent_s int type; char options[64]; } mstudioevent_t; - -#endif // STUDIO_EVENTH diff --git a/common/triangleapi.h b/common/triangleapi.h index 069a4d65f..3d24989f8 100644 --- a/common/triangleapi.h +++ b/common/triangleapi.h @@ -12,11 +12,8 @@ * without written permission from Valve LLC. * ****/ -#if !defined( TRIANGLEAPIH ) -#define TRIANGLEAPIH -#ifdef _WIN32 + #pragma once -#endif typedef enum { @@ -60,5 +57,3 @@ typedef struct triangleapi_s void ( *FogParams ) ( float flDensity, int iFogSkybox ); // Used with Fog()...sets fog density and whether the fog should be applied to the skybox } triangleapi_t; - -#endif // !TRIANGLEAPIH diff --git a/common/weaponinfo.h b/common/weaponinfo.h index b648652f0..5f15fbd05 100644 --- a/common/weaponinfo.h +++ b/common/weaponinfo.h @@ -12,11 +12,8 @@ * without written permission from Valve LLC. * ****/ -#if !defined ( WEAPONINFOH ) -#define WEAPONINFOH -#ifdef _WIN32 + #pragma once -#endif // Info about weapons player might have in his/her possession typedef struct weapon_data_s @@ -48,5 +45,3 @@ typedef struct weapon_data_s float fuser3; float fuser4; } weapon_data_t; - -#endif diff --git a/engine/edict.h b/engine/edict.h index 9a389938a..08534bfbf 100644 --- a/engine/edict.h +++ b/engine/edict.h @@ -5,11 +5,8 @@ // $NoKeywords: $ //============================================================================= -#if !defined EDICT_H -#define EDICT_H -#ifdef _WIN32 #pragma once -#endif + #define MAX_ENT_LEAFS 48 #include "progdefs.h" @@ -32,5 +29,3 @@ struct edict_s // other fields from progs come immediately after }; - -#endif diff --git a/pm_shared/pm_defs.h b/pm_shared/pm_defs.h index dc0d22a6a..ad3269762 100644 --- a/pm_shared/pm_defs.h +++ b/pm_shared/pm_defs.h @@ -13,8 +13,7 @@ * ****/ // pm_defs.h -#if !defined( PM_DEFSH ) -#define PM_DEFSH + #pragma once #include "archtypes.h" // DAL @@ -221,5 +220,3 @@ typedef struct playermove_s int (*PM_TestPlayerPositionEx) (float *pos, pmtrace_t *ptrace, int (*pfnIgnore)( physent_t *pe ) ); struct pmtrace_s *(*PM_TraceLineEx)( float *start, float *end, int flags, int usehulll, int (*pfnIgnore)( physent_t *pe ) ); } playermove_t; - -#endif diff --git a/pm_shared/pm_info.h b/pm_shared/pm_info.h index d11442675..d4b3222e4 100644 --- a/pm_shared/pm_info.h +++ b/pm_shared/pm_info.h @@ -13,12 +13,7 @@ * ****/ // Physics info string definition -#if !defined( PM_INFOH ) -#define PM_INFOH -#ifdef _WIN32 + #pragma once -#endif #define MAX_PHYSINFO_STRING 256 - -#endif // PM_INFOH diff --git a/pm_shared/pm_materials.h b/pm_shared/pm_materials.h index 97aef404f..4381e8cdf 100644 --- a/pm_shared/pm_materials.h +++ b/pm_shared/pm_materials.h @@ -12,8 +12,7 @@ * without written permission from Valve LLC. * ****/ -#if !defined( PM_MATERIALSH ) -#define PM_MATERIALSH + #pragma once #define CBTEXTURENAMEMAX 13 // only load first n chars of name @@ -30,5 +29,3 @@ #define CHAR_TEX_GLASS 'Y' #define CHAR_TEX_FLESH 'F' #define CHAR_TEX_SNOW 'N' - -#endif // !PM_MATERIALSH diff --git a/pm_shared/pm_movevars.h b/pm_shared/pm_movevars.h index f4f46ca87..2d0eb1048 100644 --- a/pm_shared/pm_movevars.h +++ b/pm_shared/pm_movevars.h @@ -6,8 +6,8 @@ //============================================================================= // pm_movevars.h -#if !defined( PM_MOVEVARSH ) -#define PM_MOVEVARSH + +#pragma once // movevars_t // Physics variables. typedef struct movevars_s movevars_t; @@ -43,5 +43,3 @@ struct movevars_s }; extern movevars_t movevars; - -#endif \ No newline at end of file diff --git a/pm_shared/pm_shared.h b/pm_shared/pm_shared.h index ce8a1c613..6b71d268f 100644 --- a/pm_shared/pm_shared.h +++ b/pm_shared/pm_shared.h @@ -16,8 +16,7 @@ // // pm_shared.h // -#if !defined( PM_SHAREDH ) -#define PM_SHAREDH + #pragma once void PM_Init( struct playermove_s *ppmove ); @@ -32,5 +31,3 @@ char PM_FindTextureType( char *name ); #define OBS_IN_EYE 4 #define OBS_MAP_FREE 5 #define OBS_MAP_CHASE 6 - -#endif