2023-10-03 17:23:56 +03:00
|
|
|
|
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
|
2020-04-22 12:56:21 -04:00
|
|
|
|
//
|
|
|
|
|
// Purpose:
|
|
|
|
|
//
|
|
|
|
|
// $NoKeywords: $
|
|
|
|
|
//=============================================================================//
|
|
|
|
|
#ifndef ICLIENTENTITYINTERNAL_H
|
|
|
|
|
#define ICLIENTENTITYINTERNAL_H
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
#pragma once
|
|
|
|
|
#endif
|
|
|
|
|
|
2023-10-03 17:23:56 +03:00
|
|
|
|
#include "IClientEntity.h"
|
|
|
|
|
#include "ClientLeafSystem.h"
|
2020-04-22 12:56:21 -04:00
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
// Forward declarations
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
class ClientClass;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
// represents a handle used only by the client DLL
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
typedef CBaseHandle ClientEntityHandle_t;
|
|
|
|
|
typedef unsigned short SpatialPartitionHandle_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // ICLIENTENTITYINTERNAL_H
|