Exemple #1
0
 /// <summary>
 /// Updates XML game.
 /// </summary>
 /// <param name="xmlGame">Parsed game from PinballX XML database</param>
 /// <returns>This instance</returns>
 public AggregatedGame Update(PinballXGame xmlGame)
 {
     if (XmlGame == null)
     {
         XmlGame = xmlGame;
     }
     else
     {
         XmlGame.Update(xmlGame);
     }
     return(this);
 }