mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
26 lines
528 B
C
26 lines
528 B
C
|
//====== Copyright <20> 1996-2005, Valve Corporation, All rights reserved. =======//
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
// $NoKeywords: $
|
|||
|
//=============================================================================//
|
|||
|
|
|||
|
#ifndef PREDICTIONCOPY_H
|
|||
|
#define PREDICTIONCOPY_H
|
|||
|
#ifdef _WIN32
|
|||
|
#pragma once
|
|||
|
#endif
|
|||
|
|
|||
|
#include "ehandle.h"
|
|||
|
#include "public/baseentity.h"
|
|||
|
|
|||
|
#if defined( CLIENT_DLL )
|
|||
|
class C_BaseEntity;
|
|||
|
typedef CHandle<C_BaseEntity> EHANDLE;
|
|||
|
|
|||
|
#else
|
|||
|
class CBaseEntity;
|
|||
|
typedef CHandle<CBaseEntity> EHANDLE;
|
|||
|
#endif
|
|||
|
|
|||
|
#endif // PREDICTIONCOPY_H
|