upload "kind" alien swarm

This commit is contained in:
nillerusr
2023-10-03 17:23:56 +03:00
parent b7bd94c52e
commit 7d3c0d8b5a
4229 changed files with 462900 additions and 495155 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef _INCLUDED_ASW_HUDELEMENT_H
#define _INCLUDED_ASW_HUDELEMENT_H
#ifdef _WIN32
#pragma once
#endif
#include "hudelement.h"
class CASW_HudElement : public CHudElement
{
public:
// DECLARE_CLASS_SIMPLE( CASW_HudElement, CHudElement );
CASW_HudElement( const char *pElementName );
// Return true if this hud element should be visible in the current hud state
virtual bool ShouldDraw( void );
protected:
/// simple convenience for printing unformatted text with a drop shadow
static void DrawColoredTextWithDropShadow( const vgui::HFont &font, int x, int y, int r, int g, int b, int a, char *fmt );
};
#endif //_INCLUDED_ASW_HUDELEMENT_H