sv_null.c 210 B

12345678910111213141516
  1. // sv_null.c -- this file can stub out the entire server system
  2. // for pure net-only clients
  3. void SV_Init (void)
  4. {
  5. }
  6. void SV_Shutdown (char *finalmsg, qboolean reconnect)
  7. {
  8. }
  9. void SV_Frame (float time)
  10. {
  11. }