hlsdk-xash3d/cl_dll/overview.h

29 lines
700 B
C
Raw Normal View History

2016-06-04 15:24:23 +02:00
//========= Copyright <20> 1996-2002, Valve LLC, All rights reserved. ============
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
#pragma once
2016-06-04 15:24:23 +02:00
#ifndef OVERVIEW_H
#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