private void ApplyClearSavedGame(ClearSavedGame clearSavedGame)
 {
     _tracker.Replace(clearSavedGame.Timestamp, x =>
     {
         x.CommanderName = clearSavedGame.Name;
     });
 }
Esempio n. 2
0
 internal ClearSavedGameEvent InvokeEvent(ClearSavedGameEvent arg)
 {
     if (_api.ValidateEvent(arg))
     {
         ClearSavedGame?.Invoke(_api, arg);
     }
     return(arg);
 }