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
+27
View File
@@ -0,0 +1,27 @@
#ifndef ASW_LOGO_PANEL_H
#define ASW_LOGO_PANEL_H
#ifdef _WIN32
#pragma once
#endif
#include <vgui/VGUI.h>
#include <vgui_controls/ImagePanel.h>
class ChatEchoPanel;
//-----------------------------------------------------------------------------
// Purpose: Panel that holds a single image - shows the backdrop image in the briefing
//-----------------------------------------------------------------------------
class CASW_Logo_Panel : public vgui::ImagePanel
{
DECLARE_CLASS_SIMPLE( CASW_Logo_Panel, vgui::ImagePanel );
public:
CASW_Logo_Panel(vgui::Panel *parent, const char *name);
virtual ~CASW_Logo_Panel();
virtual void PerformLayout();
};
#endif // ASW_LOGO_PANEL_H