blob: 0033a165e8f3f1bd5d78a5e219be6d29b7d00efd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
//========= 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:
};
|