2018-03-29 17:01:57 -04:00
|
|
|
|
|
|
|
|
#include "StdAfx.h"
|
|
|
|
|
#include "ServerObjectMaint.h"
|
|
|
|
|
#include "PhysicsObj.h"
|
|
|
|
|
#include "World.h"
|
|
|
|
|
|
2018-07-12 14:41:21 -07:00
|
|
|
void CServerObjectMaint::GotoLostCell(class CPhysicsObj *, unsigned long)
|
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
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CServerObjectMaint::AddObjectToBeDestroyed(unsigned long)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CServerObjectMaint::RemoveObjectToBeDestroyed(unsigned long)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-12 14:41:21 -07:00
|
|
|
CPhysicsObj *CServerObjectMaint::GetObject(DWORD object_id)
|
2018-03-29 17:01:57 -04:00
|
|
|
{
|
|
|
|
|
return g_pWorld->FindObject(object_id);
|
|
|
|
|
}
|