css_enhanced_waf/engine/hltvtest.h
FluorescentCIAAfricanAmerican 3bf9df6b27 1
2020-04-22 12:56:21 -04:00

40 lines
No EOL
787 B
C++

//========= Copyright 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