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