#ifndef ASW_LOGO_PANEL_H #define ASW_LOGO_PANEL_H #ifdef _WIN32 #pragma once #endif #include #include 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