mirror of
https://gitlab.com/Scribble/gdlenhanced.git
synced 2026-08-17 14:23:04 -04:00
27 lines
586 B
C++
27 lines
586 B
C++
|
|
#include "StdAfx.h"
|
|
#include "ServerObjectMaint.h"
|
|
#include "PhysicsObj.h"
|
|
#include "World.h"
|
|
|
|
void CServerObjectMaint::GotoLostCell(class std::shared_ptr<CPhysicsObj> , unsigned long)
|
|
{
|
|
}
|
|
|
|
void CServerObjectMaint::RemoveFromLostCell(class std::shared_ptr<CPhysicsObj> )
|
|
{
|
|
}
|
|
|
|
void CServerObjectMaint::AddObjectToBeDestroyed(unsigned long)
|
|
{
|
|
}
|
|
|
|
void CServerObjectMaint::RemoveObjectToBeDestroyed(unsigned long)
|
|
{
|
|
}
|
|
|
|
std::shared_ptr<CPhysicsObj> CServerObjectMaint::GetObject(DWORD object_id)
|
|
{
|
|
// TODO convert CPhysObject to shared pointers?
|
|
return g_pWorld->FindObject(object_id);
|
|
}
|