NS/releases/3.04/source/mod/AvHOverviewControl.h
tankefugl 19b458f8bc Branched for 3.0.4 balance
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@141 67975925-1194-0748-b3d5-c16f83f1a3a1
2005-05-29 10:59:29 +00:00

32 lines
No EOL
537 B
C++

#ifndef AVHOVERVIEWCONTROL_H
#define AVHOVERVIEWCONTROL_H
#include "VGUI_Panel.h"
//#include "cl_dll/util_vector.h"
//#include "cl_dll/wrect.h"
//#include "engine/cdll_int.h"
#include "mod/AvHHud.h"
class AvHOverviewControl : public vgui::Panel
{
public:
AvHOverviewControl();
// Overridden from Panel.
virtual void paint();
void HandleMouseClick(int inX, int inY);
protected:
void GetDrawInfo(AvHOverviewMap::DrawInfo& outDrawInfo);
private:
HSPRITE m_hsprWhite;
};
#endif