Example #1
0
 public void NotifyObservers(GameResult result)
 {
     Observers.ForEach(x => x.Update(result));
 }
Example #2
0
 public void AddGameResult(GameResult result)
 {
     NotifyObservers(result);
 }