mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-04 00:23:25 +08:00
31 lines
937 B
C
31 lines
937 B
C
|
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
// $NoKeywords: $
|
|||
|
//=============================================================================//
|
|||
|
|
|||
|
#ifndef ILAGCOMPENSATIONMANAGER_H
|
|||
|
#define ILAGCOMPENSATIONMANAGER_H
|
|||
|
#ifdef _WIN32
|
|||
|
#pragma once
|
|||
|
#endif
|
|||
|
|
|||
|
class CBasePlayer;
|
|||
|
class CUserCmd;
|
|||
|
|
|||
|
//-----------------------------------------------------------------------------
|
|||
|
// Purpose: This is also an IServerSystem
|
|||
|
//-----------------------------------------------------------------------------
|
|||
|
abstract_class ILagCompensationManager
|
|||
|
{
|
|||
|
public:
|
|||
|
// Called during player movement to set up/restore after lag compensation
|
|||
|
virtual void StartLagCompensation( CBasePlayer *player, CUserCmd *cmd ) = 0;
|
|||
|
virtual void FinishLagCompensation( CBasePlayer *player ) = 0;
|
|||
|
};
|
|||
|
|
|||
|
extern ILagCompensationManager *lagcompensation;
|
|||
|
|
|||
|
#endif // ILAGCOMPENSATIONMANAGER_H
|