コード例 #1
0
 /// <summary>
 /// Gets the awards from the handler and adds
 /// them to the scoring class for displaying
 /// and scoring.
 /// </summary>
 private static void GetAwards()
 {
     foreach (var award in AwardHandler.Awards)
     {
         m_scoring.AddAward(award);
     }
     AwardHandler.Awards.Clear();
 }