mirror of
https://github.com/ENSL/NS.git
synced 2024-11-15 09:21:54 +00:00
32 lines
No EOL
505 B
C++
32 lines
No EOL
505 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 "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:
|
|
|
|
AVHHSPRITE m_hsprWhite;
|
|
|
|
};
|
|
|
|
#endif |