blob: a30b5932f6a18c36dae2b2275f2b59e5476e2b86 (
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
27
28
29
30
31
32
33
34
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#ifndef CONSOLEPAGE_H
#define CONSOLEPAGE_H
#ifdef _WIN32
#pragma once
#endif
#include "vgui_controls/consoledialog.h"
//-----------------------------------------------------------------------------
// Purpose: Game/dev console dialog
//-----------------------------------------------------------------------------
class CConsolePage : public vgui::CConsolePanel
{
DECLARE_CLASS_SIMPLE( CConsolePage, vgui::CConsolePanel );
public:
CConsolePage( Panel *parent, bool bStatusVersion );
private:
MESSAGE_FUNC_CHARPTR( OnCommandSubmitted, "CommandSubmitted", command );
// vgui overrides
virtual void ApplySchemeSettings( vgui::IScheme *pScheme );
};
#endif // CONSOLEPAGE_H
|