mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 14:16:50 +00:00
26 lines
712 B
C
26 lines
712 B
C
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#include <vgui_controls/PropertyPage.h>
|
||
|
#include "filesystem.h"
|
||
|
#include <vgui_controls/Panel.h>
|
||
|
|
||
|
#include <VGUI/IVGui.h> // for dprinf statements
|
||
|
|
||
|
using namespace vgui;
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// This class contains the basic layout for every demo panel.
|
||
|
//-----------------------------------------------------------------------------
|
||
|
class DemoPage: public PropertyPage
|
||
|
{
|
||
|
public:
|
||
|
DemoPage(Panel *parent, const char *name);
|
||
|
~DemoPage();
|
||
|
|
||
|
private:
|
||
|
};
|