2025-05-17 14:17:24 -04:00
|
|
|
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
2008-09-15 01:07:45 -05:00
|
|
|
//
|
|
|
|
// Purpose:
|
|
|
|
//
|
|
|
|
//=============================================================================//
|
|
|
|
|
|
|
|
#include "cbase.h"
|
|
|
|
#include "gameinterface.h"
|
|
|
|
#include "mapentities.h"
|
|
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------- //
|
|
|
|
// Mod-specific CServerGameClients implementation.
|
|
|
|
// -------------------------------------------------------------------------------------------- //
|
|
|
|
|
|
|
|
void CServerGameClients::GetPlayerLimits( int& minplayers, int& maxplayers, int &defaultMaxPlayers ) const
|
|
|
|
{
|
|
|
|
minplayers = 2; // Force multiplayer.
|
|
|
|
maxplayers = MAX_PLAYERS;
|
|
|
|
defaultMaxPlayers = 32;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------- //
|
|
|
|
// Mod-specific CServerGameDLL implementation.
|
|
|
|
// -------------------------------------------------------------------------------------------- //
|
|
|
|
|
|
|
|
void CServerGameDLL::LevelInit_ParseAllEntities( const char *pMapEntities )
|
|
|
|
{
|
|
|
|
}
|