mirror of
https://gitlab.com/Scribble/gdlenhanced.git
synced 2026-08-17 14:23:04 -04:00
13 lines
No EOL
345 B
C++
13 lines
No EOL
345 B
C++
#pragma once
|
|
|
|
class CPhysicsObj;
|
|
|
|
class CServerObjectMaint
|
|
{
|
|
public:
|
|
void GotoLostCell(std::shared_ptr<CPhysicsObj> , unsigned long);
|
|
void RemoveFromLostCell(std::shared_ptr<CPhysicsObj> );
|
|
void AddObjectToBeDestroyed(unsigned long);
|
|
void RemoveObjectToBeDestroyed(unsigned long);
|
|
std::shared_ptr<CPhysicsObj> GetObject(DWORD object_id);
|
|
}; |