示例#1
0
 /// <summary>
 /// loops through all objects in the game's state and starts each one
 /// </summary>
 public void StartAll()
 {
     foreach (GameObjects.IGameObject GO in GameObjectList)
     {
         GO.Start();
     }
 }