mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
36 lines
836 B
C++
36 lines
836 B
C++
//====== Copyright <20> 1996-2005, Valve Corporation, All rights reserved. =======//
|
||
//
|
||
// Purpose:
|
||
//
|
||
// $NoKeywords: $
|
||
//=============================================================================//
|
||
|
||
#ifndef ISERVERUNKNOWN_H
|
||
#define ISERVERUNKNOWN_H
|
||
|
||
#ifdef _WIN32
|
||
#pragma once
|
||
#endif
|
||
|
||
|
||
#include "ihandleentity.h"
|
||
|
||
//-------------------------------------------------------------------------------------
|
||
// Forward declarations
|
||
//-------------------------------------------------------------------------------------
|
||
class ICollideable;
|
||
class IServerNetworkable;
|
||
class CBaseEntity;
|
||
|
||
|
||
// This is the server's version of IUnknown. We may want to use a QueryInterface-like
|
||
// mechanism if this gets big.
|
||
class IServerUnknown : public IHandleEntity
|
||
{
|
||
public:
|
||
virtual CBaseEntity* GetBaseEntity() = 0;
|
||
};
|
||
|
||
|
||
#endif // ISERVERUNKNOWN_H
|