ACR_CreatureBehavior.GameObjectManager.RemoveGameObject C# (CSharp) Method

RemoveGameObject() public method

Remove an object from the game object table.
public RemoveGameObject ( ACR_CreatureBehavior.GameObject Obj ) : void
Obj ACR_CreatureBehavior.GameObject Supplies the object to remove.
return void
        public void RemoveGameObject(GameObject Obj)
        {
            GameObjectTable.Remove(Obj.ObjectId);
            ObjectsToDelete.Add(Obj);
        }