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,37 @@
#ifndef BRIEFINGIMAGEPANEL_H
#define BRIEFINGIMAGEPANEL_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 BriefingImagePanel : public vgui::ImagePanel
{
DECLARE_CLASS_SIMPLE( BriefingImagePanel, vgui::ImagePanel );
public:
BriefingImagePanel(vgui::Panel *parent, const char *name);
virtual ~BriefingImagePanel();
virtual void OnThink();
void CloseBriefingFrame();
void StartMusic();
virtual void PerformLayout();
// no drawing the image here...
virtual void PaintBackground() { }
vgui::Panel* m_pOldParent;
//ChatEchoPanel* m_pChatEcho;
float m_fRestartMusicTime;
};
#endif // BRIEFINGIMAGEPANEL_H