mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-08 01:39:36 +00:00
1
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $NoKeywords: $
|
||||
//=============================================================================//
|
||||
|
||||
#include "DemoPage.h"
|
||||
|
||||
using namespace vgui;
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: Constructor
|
||||
//-----------------------------------------------------------------------------
|
||||
DemoPage::DemoPage(Panel *parent, const char *name) : PropertyPage(parent, name)
|
||||
{
|
||||
SetPos(1,80);
|
||||
int wide, tall;
|
||||
GetParent()->GetSize(wide, tall);
|
||||
SetSize (wide-2, tall - 81);
|
||||
|
||||
SetPaintBorderEnabled(false);
|
||||
SetVisible(false);
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: Destructor
|
||||
//-----------------------------------------------------------------------------
|
||||
DemoPage::~DemoPage()
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user