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