mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-09-01 15:09:19 +00:00
upload "kind" alien swarm
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
#ifndef _INCLUDED_ASW_HUD_POWERUPS_H
|
||||
#define _INCLUDED_ASW_HUD_POWERUPS_H
|
||||
|
||||
#include <vgui/VGUI.h>
|
||||
#include <vgui_controls/Panel.h>
|
||||
#include "c_asw_marine.h"
|
||||
|
||||
namespace vgui
|
||||
{
|
||||
class Label;
|
||||
class ImagePanel;
|
||||
};
|
||||
class C_ASW_Weapon;
|
||||
|
||||
// panel to show fast reload timing (this was just a test, fast reloading is currently disabled)
|
||||
|
||||
class CASW_Hud_Powerups : public vgui::Panel
|
||||
{
|
||||
DECLARE_CLASS_SIMPLE( CASW_Hud_Powerups, vgui::Panel );
|
||||
|
||||
CASW_Hud_Powerups( vgui::Panel *pParent, const char *pElementName );
|
||||
virtual ~CASW_Hud_Powerups();
|
||||
|
||||
virtual void ApplySchemeSettings(vgui::IScheme *pScheme);
|
||||
virtual void OnThink();
|
||||
virtual void PerformLayout();
|
||||
virtual void UpdatePowerupIcon( C_ASW_Marine *pMarine );
|
||||
|
||||
vgui::ImagePanel *m_pIconImage;
|
||||
vgui::Label *m_pStringLabel;
|
||||
};
|
||||
|
||||
#endif /* _INCLUDED_ASW_HUD_POWERUPS_H */
|
||||
Reference in New Issue
Block a user