mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Simulate bot user commands on the server. The simulation system is experimental and only runs if cvar 'sv_simulateBots' is set, and bots are created on the server.
17 lines
394 B
C
17 lines
394 B
C
//===== Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ======//
|
||
//
|
||
// Purpose:
|
||
//
|
||
//===========================================================================//
|
||
#ifndef UTIL_SHARED_H
|
||
#define UTIL_SHARED_H
|
||
#ifndef CLIENT_DLL
|
||
#include "game/server/player.h"
|
||
#endif
|
||
|
||
#ifndef CLIENT_DLL
|
||
CPlayer* UTIL_PlayerByIndex(int nIndex);
|
||
#endif // CLIENT_DLL
|
||
|
||
#endif // !UTIL_SHARED_H
|