mirror of
https://github.com/celisej567/cool-source-archive.git
synced 2026-02-26 00:53:14 +03:00
13 lines
330 B
C++
13 lines
330 B
C++
#include "cbase.h"
|
|
#include "gameinterface.h"
|
|
|
|
void CServerGameClients::GetPlayerLimits( int& minplayers, int& maxplayers, int &defaultMaxPlayers ) const
|
|
{
|
|
minplayers = 2; // Force multiplayer.
|
|
maxplayers = MAX_PLAYERS;
|
|
defaultMaxPlayers = 32;
|
|
}
|
|
|
|
void CServerGameDLL::LevelInit_ParseAllEntities( const char *pMapEntities )
|
|
{
|
|
} |