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.
24 lines
471 B
24 lines
471 B
5 years ago
|
//========= 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
|