2018-03-29 17:01:57 -04:00
|
|
|
|
2019-07-07 20:56:15 +00:00
|
|
|
#include <StdAfx.h>
|
2018-03-29 17:01:57 -04:00
|
|
|
#include "ServerObjectMaint.h"
|
|
|
|
|
#include "PhysicsObj.h"
|
|
|
|
|
#include "World.h"
|
|
|
|
|
|
2019-07-07 20:56:15 +00:00
|
|
|
void CServerObjectMaint::GotoLostCell(class CPhysicsObj *, uint32_t)
|
2018-03-29 17:01:57 -04:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-12 14:41:21 -07:00
|
|
|
void CServerObjectMaint::RemoveFromLostCell(class CPhysicsObj *)
|
2018-03-29 17:01:57 -04:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-07 20:56:15 +00:00
|
|
|
void CServerObjectMaint::AddObjectToBeDestroyed(uint32_t)
|
2018-03-29 17:01:57 -04:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-07 20:56:15 +00:00
|
|
|
void CServerObjectMaint::RemoveObjectToBeDestroyed(uint32_t)
|
2018-03-29 17:01:57 -04:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-07 20:56:15 +00:00
|
|
|
CPhysicsObj *CServerObjectMaint::GetObject(uint32_t object_id)
|
2018-03-29 17:01:57 -04:00
|
|
|
{
|
|
|
|
|
return g_pWorld->FindObject(object_id);
|
|
|
|
|
}
|