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,31 @@
#ifndef _INCLUDED_SWARMOPEDIA_TOPICS_H
#define _INCLUDED_SWARMOPEDIA_TOPICS_H
#ifdef _WIN32
#pragma once
#endif
// reads in the list of topics for the Swarmopedia
class SwarmopediaPanel;
class SwarmopediaTopics : public vgui::Panel
{
DECLARE_CLASS_SIMPLE( SwarmopediaTopics, vgui::Panel );
public:
SwarmopediaTopics();
virtual ~SwarmopediaTopics();
void LoadTopics();
// fills in the target list panel with buttons for each of the entries in the desired list
bool SetupList(SwarmopediaPanel* pPanel, const char *szDesiredList);
protected:
KeyValues* GetSubkeyForList(const char *szListName);
private:
KeyValues* m_pKeys;
};
SwarmopediaTopics* GetSwarmopediaTopics();
#endif _INCLUDED_SWARMOPEDIA_TOPICS_H