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
@@ -0,0 +1,23 @@
#ifndef _INCLUDED_ASW_VGUI_SKIP_INTRO_H
#define _INCLUDED_ASW_VGUI_SKIP_INTRO_H
#include <vgui/IScheme.h>
#include <vgui/VGUI.h>
#include <vgui_controls/Panel.h>
#include "asw_vgui_ingame_panel.h"
// invisible full screen panel used to detect a mouse click during the intro to skip straight to the campaign screen
class CASW_VGUI_Skip_Intro : public vgui::Panel, public CASW_VGUI_Ingame_Panel
{
DECLARE_CLASS_SIMPLE( CASW_VGUI_Skip_Intro, vgui::Panel );
CASW_VGUI_Skip_Intro( vgui::Panel *pParent, const char *pElementName );
virtual ~CASW_VGUI_Skip_Intro();
virtual void ApplySchemeSettings(vgui::IScheme *pScheme);
virtual void PerformLayout();
virtual bool MouseClick(int x, int y, bool bRightClick, bool bDown);
};
#endif /* _INCLUDED_ASW_VGUI_SKIP_INTRO_H */