/// <summary>
 /// loops through all objects in the game's state and ticks each one
 /// </summary>
 public void TickAll()
 {
     foreach (GameObjects.IGameObject GO in GameObjectList)
     {
         GO.Tick();
     }
 }