mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-11-10 23:31:42 +00:00
15 lines
210 B
C
15 lines
210 B
C
// sv_null.c -- this file can stub out the entire server system
|
|
// for pure net-only clients
|
|
|
|
void SV_Init (void)
|
|
{
|
|
}
|
|
|
|
void SV_Shutdown (char *finalmsg, qboolean reconnect)
|
|
{
|
|
}
|
|
|
|
void SV_Frame (float time)
|
|
{
|
|
}
|
|
|