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,28 @@
//============ Copyright (c) Valve Corporation, All rights reserved. ============
//
// Panel to edit "state" nodes in layout system definitions.
//
//===============================================================================
#ifndef STATE_NODE_PANEL_H
#define STATE_NODE_PANEL_H
#if defined( COMPILER_MSVC )
#pragma once
#endif
#include "node_panel.h"
class CStateNodePanel : public CNodePanel
{
DECLARE_CLASS_SIMPLE( CStateNodePanel, CNodePanel );
public:
CStateNodePanel( Panel *pParent, const char *pName );
protected:
virtual void CreatePanelContents();
virtual void UpdateState();
};
#endif // STATE_NODE_PANEL_H