hlsdk-xash3d/cl_dll/overview.h

28 lines
707 B
C
Raw Normal View History

2018-01-19 18:00:32 +01:00
//========= Copyright (c) 1996-2002, Valve LLC, All rights reserved. ============
2016-06-04 15:24:23 +02:00
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
#pragma once
2021-06-20 00:53:07 +02:00
#if !defined(OVERVIEW_H)
2016-06-04 15:24:23 +02:00
#define OVERVIEW_H
//-----------------------------------------------------------------------------
// Purpose: Handles the drawing of the top-down map and all the things on it
//-----------------------------------------------------------------------------
class CHudOverview : public CHudBase
{
public:
int Init();
int VidInit();
2016-07-03 15:39:55 +02:00
int Draw( float flTime );
2016-06-04 15:24:23 +02:00
void InitHUDData( void );
private:
HSPRITE m_hsprPlayer;
HSPRITE m_hsprViewcone;
};
#endif // OVERVIEW_H