mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-06-08 08:18:13 +00:00
28 lines
685 B
C++
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
|