networking

This commit is contained in:
2025-07-13 15:47:42 +03:00
parent f5b26be510
commit a9c28b8940
345 changed files with 142130 additions and 174 deletions

View File

@@ -9,6 +9,7 @@ public:
virtual void ReadParameter( const char *szName, const char *szValue ) override;
virtual void Destroy( void ) override;
virtual void Think( float fDelta ) override;
virtual void Sync( void *pData, uint32_t nDataSize ) override;
};
void CLight::Precache()
@@ -33,7 +34,10 @@ void CLight::Destroy()
}
void CLight::Think( float fDelta )
{
};
void CLight::Sync( void *pData, uint32_t nDataSize )
{
};
DECLARE_ENTITY(light, CLight)