gdle/Source/ServerObjectMaint.cpp
2018-03-29 17:01:57 -04:00

26 lines
489 B
C++

#include "StdAfx.h"
#include "ServerObjectMaint.h"
#include "PhysicsObj.h"
#include "World.h"
void CServerObjectMaint::GotoLostCell(class CPhysicsObj *, unsigned long)
{
}
void CServerObjectMaint::RemoveFromLostCell(class CPhysicsObj *)
{
}
void CServerObjectMaint::AddObjectToBeDestroyed(unsigned long)
{
}
void CServerObjectMaint::RemoveObjectToBeDestroyed(unsigned long)
{
}
CPhysicsObj *CServerObjectMaint::GetObject(DWORD object_id)
{
return g_pWorld->FindObject(object_id);
}