cl_null.c 617 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // cl_null.c -- this file can stub out the entire client system
  2. // for pure dedicated servers
  3. #include "../qcommon/qcommon.h"
  4. void Key_Bind_Null_f(void)
  5. {
  6. }
  7. void CL_Init (void)
  8. {
  9. }
  10. void CL_Drop (void)
  11. {
  12. }
  13. void CL_Shutdown (void)
  14. {
  15. }
  16. void CL_Frame (int msec)
  17. {
  18. }
  19. void Con_Print (char *text)
  20. {
  21. }
  22. void Cmd_ForwardToServer (void)
  23. {
  24. char *cmd;
  25. cmd = Cmd_Argv(0);
  26. Com_Printf ("Unknown command \"%s\"\n", cmd);
  27. }
  28. void SCR_DebugGraph (float value, int color)
  29. {
  30. }
  31. void SCR_BeginLoadingPlaque (void)
  32. {
  33. }
  34. void SCR_EndLoadingPlaque (void)
  35. {
  36. }
  37. void Key_Init (void)
  38. {
  39. Cmd_AddCommand ("bind", Key_Bind_Null_f);
  40. }