mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-10 03:18:50 +08:00
25 lines
412 B
C++
25 lines
412 B
C++
#ifndef ISERVERUNKNOWN_H
|
|
#define ISERVERUNKNOWN_H
|
|
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
#include "ihandleentity.h"
|
|
|
|
class ICollideable;
|
|
class IServerNetworkable;
|
|
class CBaseEntity;
|
|
|
|
|
|
class IServerUnknown : public IHandleEntity
|
|
{
|
|
public:
|
|
virtual ICollideable* GetCollideable() = 0;
|
|
virtual IServerNetworkable* GetNetworkable() = 0;
|
|
virtual CBaseEntity* GetBaseEntity() = 0;
|
|
};
|
|
|
|
|
|
#endif |