mirror of
https://github.com/shawns-valve/halflife.git
synced 2024-11-22 12:31:51 +00:00
25 lines
716 B
C
25 lines
716 B
C
|
//========= Copyright <20> 1996-2002, Valve LLC, All rights reserved. ============
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
// $NoKeywords: $
|
|||
|
//=============================================================================
|
|||
|
|
|||
|
#if !defined( SCREENFADEH )
|
|||
|
#define SCREENFADEH
|
|||
|
#ifdef _WIN32
|
|||
|
#pragma once
|
|||
|
#endif
|
|||
|
|
|||
|
typedef struct screenfade_s
|
|||
|
{
|
|||
|
float fadeSpeed; // How fast to fade (tics / second) (+ fade in, - fade out)
|
|||
|
float fadeEnd; // When the fading hits maximum
|
|||
|
float fadeTotalEnd; // Total End Time of the fade (used for FFADE_OUT)
|
|||
|
float fadeReset; // When to reset to not fading (for fadeout and hold)
|
|||
|
byte fader, fadeg, fadeb, fadealpha; // Fade color
|
|||
|
int fadeFlags; // Fading flags
|
|||
|
} screenfade_t;
|
|||
|
|
|||
|
#endif // !SCREENFADEH
|