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,34 @@
#ifndef _INCLUDED_PLAYER_LIST_CONTAINER_H
#define _INCLUDED_PLAYER_LIST_CONTAINER_H
#ifdef _WIN32
#pragma once
#endif
#include <vgui/VGUI.h>
#include <vgui_controls/Frame.h>
// some containers used to hold the PlayerListPanel (different ones used during game and during briefing/debrief)
class PlayerListContainer : public vgui::Panel
{
DECLARE_CLASS_SIMPLE( PlayerListContainer, vgui::Panel );
public:
PlayerListContainer(vgui::Panel *parent, const char *name);
virtual ~PlayerListContainer();
virtual void PerformLayout();
virtual void ApplySchemeSettings(vgui::IScheme *pScheme);
};
class PlayerListContainerFrame : public vgui::Frame
{
DECLARE_CLASS_SIMPLE( PlayerListContainerFrame, vgui::Frame );
PlayerListContainerFrame(Panel *parent, const char *panelName, bool showTaskbarIcon = true);
virtual ~PlayerListContainerFrame();
virtual void ApplySchemeSettings(vgui::IScheme *pScheme);
virtual void PerformLayout();
};
#endif // _INCLUDED_PLAYER_LIST_CONTAINER_H