mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-10 07:07:32 -05:00
16 lines
210 B
C
16 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)
|
|
{
|
|
}
|
|
|