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.
40 lines
801 B
40 lines
801 B
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//
|
|
//=============================================================================//
|
|
// hltvtest.h: hltv test system
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef HLTVTEST_H
|
|
#define HLTVTEST_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "utlvector.h"
|
|
|
|
class CHLTVServer;
|
|
|
|
class CHLTVTestSystem
|
|
{
|
|
public:
|
|
CHLTVTestSystem(void);
|
|
~CHLTVTestSystem(void);
|
|
|
|
void RunFrame();
|
|
bool StartTest(int nClients, const char *pszAddress);
|
|
void RetryTest(int nClients);
|
|
bool StopsTest();
|
|
|
|
protected:
|
|
|
|
CUtlVector<CHLTVServer*> m_Servers;
|
|
};
|
|
|
|
extern CHLTVTestSystem *hltvtest; // The global HLTV server/object. NULL on xbox.
|
|
|
|
#endif // HLTVSERVER_H
|