source-engine/game/client/swarm/vgui/asw_logo_panel.h
2023-10-03 17:23:56 +03:00

28 lines
685 B
C++

#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