mirror of
https://gitlab.com/Scribble/gdlenhanced.git
synced 2026-08-17 14:23:04 -04:00
26 lines
477 B
C++
26 lines
477 B
C++
|
|
#include <StdAfx.h>
|
|
#include "ServerObjectMaint.h"
|
|
#include "PhysicsObj.h"
|
|
#include "World.h"
|
|
|
|
void CServerObjectMaint::GotoLostCell(class CPhysicsObj *, uint32_t)
|
|
{
|
|
}
|
|
|
|
void CServerObjectMaint::RemoveFromLostCell(class CPhysicsObj *)
|
|
{
|
|
}
|
|
|
|
void CServerObjectMaint::AddObjectToBeDestroyed(uint32_t)
|
|
{
|
|
}
|
|
|
|
void CServerObjectMaint::RemoveObjectToBeDestroyed(uint32_t)
|
|
{
|
|
}
|
|
|
|
CPhysicsObj *CServerObjectMaint::GetObject(uint32_t object_id)
|
|
{
|
|
return g_pWorld->FindObject(object_id);
|
|
}
|