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,35 @@
#ifndef _INCLUDED_ASW_MEDAL_COLLECTION_FRAME_H
#define _INCLUDED_ASW_MEDAL_COLLECTION_FRAME_H
#ifdef _WIN32
#pragma once
#endif
#include <vgui_controls/Frame.h>
class MedalCollectionPanel;
class SwarmopediaPanel;
namespace vgui
{
class Button;
class PropertySheet;
};
class CASW_Medal_Collection_Frame : public vgui::Frame
{
DECLARE_CLASS_SIMPLE( CASW_Medal_Collection_Frame, vgui::Frame );
public:
CASW_Medal_Collection_Frame( vgui::Panel *pParent, const char *pElementName);
virtual ~CASW_Medal_Collection_Frame();
virtual void PerformLayout();
virtual void OnCommand(const char* command);
virtual void ApplySchemeSettings(vgui::IScheme *pScheme);
vgui::Panel *m_pMedalOffsetPanel;
MedalCollectionPanel* m_pCollectionPanel;
SwarmopediaPanel* m_pSwarmopediaPanel;
vgui::Button *m_pCancelButton;
vgui::PropertySheet* m_pSheet;
};
#endif // _INCLUDED_ASW_MEDAL_COLLECTION_FRAME_H