1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 12:06:07 +08:00

Remove CBaseEntity definition

It's better for thirdparty to handle definition of it, we can use CEntityInstance instead since it's a base class here.
This commit is contained in:
GAMMACASE
2024-05-08 21:57:44 +03:00
parent 5b106aaf14
commit 74283e80d8
5 changed files with 4 additions and 17 deletions

View File

@ -111,9 +111,9 @@ inline int CEntityHandle::GetSerialNumber() const
return m_Parts.m_Serial;
}
inline int CEntityHandle::ToInt() const
{
return m_Index;
inline int CEntityHandle::ToInt() const
{
return m_Index;
}
inline bool CEntityHandle::operator !=(const CEntityHandle& other) const