public void AddObject(GameObject3D newObject) { newObject.Destroying += _newObject_Destroying; SceneObjects.Add(newObject); }
public void LoadRuntimeObject(GameObject3D gameObject) { if (gameObject != null) { gameObject.LoadContent(Game.Content); ActiveScene.AddObject(gameObject); } }