blob: 4a9d51f8fef78c1f22532efe04f6a0a44629fae9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef DOD_HUD_PLAYERSTATUS_WEAPON_H
#define DOD_HUD_PLAYERSTATUS_WEAPON_H
#ifdef _WIN32
#pragma once
#endif
//-----------------------------------------------------------------------------
// Purpose: Weapon Selection panel
//-----------------------------------------------------------------------------
class CDoDHudCurrentWeapon : public vgui::EditablePanel
{
DECLARE_CLASS_SIMPLE( CDoDHudCurrentWeapon, vgui::EditablePanel );
public:
CDoDHudCurrentWeapon( vgui::Panel *parent, const char *name ) : vgui::EditablePanel( parent, name ){}
virtual void Paint();
};
#endif // DOD_HUD_PLAYERSTATUS_WEAPON_H
|