You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
918 B
35 lines
918 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================
|
||
|
|
||
|
#ifndef SERVERCONFIGPANEL_H
|
||
|
#define SERVERCONFIGPANEL_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#include "VarListPropertyPage.h"
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Purpose: Displays and allows modification to variable specific to the game
|
||
|
//-----------------------------------------------------------------------------
|
||
|
class CServerConfigPanel : public CVarListPropertyPage
|
||
|
{
|
||
|
public:
|
||
|
CServerConfigPanel(vgui::Panel *parent, const char *name, const char *mod);
|
||
|
~CServerConfigPanel();
|
||
|
|
||
|
protected:
|
||
|
// variable updates
|
||
|
virtual void OnResetData();
|
||
|
virtual void OnThink();
|
||
|
|
||
|
private:
|
||
|
float m_flUpdateTime;
|
||
|
typedef CVarListPropertyPage BaseClass;
|
||
|
};
|
||
|
|
||
|
#endif // SERVERCONFIGPANEL_H
|