Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
484 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. // cl_pred.h
  9. #ifndef CL_PRED_H
  10. #define CL_PRED_H
  11. #ifdef _WIN32
  12. #pragma once
  13. #endif
  14. typedef enum
  15. {
  16. PREDICTION_SIMULATION_RESULTS_ARRIVING_ON_SEND_FRAME = 0,
  17. PREDICTION_NORMAL,
  18. } PREDICTION_REASON;
  19. void CL_RunPrediction( PREDICTION_REASON reason );
  20. #endif // CL_PRED_H