mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-15 09:30:00 +00:00
28 lines
635 B
C
28 lines
635 B
C
|
//============ 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
|