mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-01-11 23:47:53 +00:00
23 lines
488 B
C
23 lines
488 B
C
//========= Copyright (c) 1996-2002, Valve LLC, All rights reserved. ============
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================
|
|
|
|
#if !defined ( VIEWH )
|
|
#define VIEWH
|
|
#pragma once
|
|
|
|
#if !defined(M_PI)
|
|
#define M_PI 3.14159265358979323846 // matches value in gcc v2 math.h
|
|
#endif
|
|
|
|
#if !defined(M_PI_F)
|
|
#define M_PI_F (float)M_PI
|
|
#endif
|
|
|
|
void V_StartPitchDrift( void );
|
|
void V_StopPitchDrift( void );
|
|
#endif // !VIEWH
|