mirror of
https://github.com/celisej567/source-engine.git
synced 2026-01-05 22:09:59 +03:00
1
This commit is contained in:
35
tracker/AdminServer/ServerConfigPanel.h
Normal file
35
tracker/AdminServer/ServerConfigPanel.h
Normal file
@@ -0,0 +1,35 @@
|
||||
//========= 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
|
||||
Reference in New Issue
Block a user