private bool OnUpdate(UpdateMessage updateMessage)
 {
     if(!Disabled && string.IsNullOrEmpty(CurrentNotification))
     {
         Disabled = true;
     }
     else
     {
         UpdateDialog();
     }
     return false;
 }
Exemplo n.º 2
0
 private bool OnUpdateMessage(UpdateMessage updateMessage)
 {
     if(_notificationScreenController.Disabled && !string.IsNullOrEmpty(_gameData?.CurrentNotification))
     {
         _notificationScreenController.Disabled = false;
     }
     return false;
 }