mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-10 19:22:10 +08:00
20 lines
311 B
C++
20 lines
311 B
C++
#ifndef IHANDLEENTITY_H
|
|
#define IHANDLEENTITY_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
class CBaseHandle;
|
|
|
|
|
|
class IHandleEntity
|
|
{
|
|
public:
|
|
virtual ~IHandleEntity() {}
|
|
virtual void SetRefEHandle(const CBaseHandle& handle) = 0;
|
|
virtual const CBaseHandle& GetRefEHandle() const = 0;
|
|
};
|
|
|
|
|
|
#endif |