2023-01-18 00:46:17 +01:00
|
|
|
|
//====== Copyright <20> 1996-2005, Valve Corporation, All rights reserved. =======//
|
|
|
|
|
//
|
|
|
|
|
// Purpose:
|
|
|
|
|
//
|
|
|
|
|
// $NoKeywords: $
|
|
|
|
|
//=============================================================================//
|
|
|
|
|
|
|
|
|
|
#ifndef ISERVERENTITY_H
|
|
|
|
|
#define ISERVERENTITY_H
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
#pragma once
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
2023-05-15 14:47:03 +02:00
|
|
|
|
#include "tier1/string_t.h"
|
2023-01-18 00:46:17 +01:00
|
|
|
|
#include "iserverunknown.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct Ray_t;
|
|
|
|
|
class ServerClass;
|
|
|
|
|
class ICollideable;
|
|
|
|
|
class IServerNetworkable;
|
|
|
|
|
class Vector;
|
|
|
|
|
class QAngle;
|
|
|
|
|
|
|
|
|
|
// This class is how the engine talks to entities in the game DLL.
|
|
|
|
|
// CBaseEntity implements this interface.
|
|
|
|
|
class IServerEntity : public IServerUnknown
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // ISERVERENTITY_H
|