protected void DisplayNotificationMessageFilter(Playfab.NotificationMessage data) {
     var NotificationUIItems = NotificationUIManager.Components;
     for (var NotificationUIIndex = 0
     ; NotificationUIIndex < NotificationUIItems.Count; NotificationUIIndex++
     ) {
         if (!NotificationUIItems[NotificationUIIndex].Enabled) {
             continue;
         }
         this.DisplayNotificationMessageHandler(data, NotificationUIItems[NotificationUIIndex]);
     }
 }
 protected void ShowLoginScreenFilter(Playfab.UserLoggedOut data) {
     this.ShowLoginScreenHandler(data);
 }
 protected virtual void LoadTitleDataHandler(Playfab.LoadData data) {
 }
 protected virtual void LoginSystemUserLoggedOutHandler(Playfab.UserLoggedOut data) {
     var handler = new LoginSystemUserLoggedOutHandler();
     handler.System = this;
     handler.Event = data;
     handler.Execute();
 }
 protected void LoadPlayerStatsFilter(Playfab.LoadData data) {
     this.LoadPlayerStatsHandler(data);
 }
 protected void SavePlayerStatsFilter(Playfab.SaveData data) {
     this.SavePlayerStatsHandler(data);
 }
 protected override void PlayfabLoginSystemLoginUserHandler(Playfab.LoginUser data) {
 }
 protected override void LoadCloudDataHandler(Playfab.LoadData data) {
 }
 protected void PlayfabLoginSystemLoginUserFilter(Playfab.LoginUser data) {
     this.PlayfabLoginSystemLoginUserHandler(data);
 }
 protected virtual void PlayfabLoginSystemLoginUserHandler(Playfab.LoginUser data) {
 }
 protected void NotifyLoginFilter(Playfab.UserLoggedIn data) {
     this.NotifyLoginHandler(data);
 }
 protected virtual void NotifyLoginHandler(Playfab.UserLoggedIn data) {
 }
 protected virtual void LoginUISystemLoginUserHandler(Playfab.LoginUser data) {
     var handler = new LoginUISystemLoginUserHandler();
     handler.System = this;
     handler.Event = data;
     handler.Execute();
 }
 protected void HideLoadingUIFilter(Playfab.UserLoggedIn data) {
     this.HideLoadingUIHandler(data);
 }
 protected virtual void HideLoadingUIHandler(Playfab.UserLoggedIn data) {
     var handler = new HideLoadingUIHandler();
     handler.System = this;
     handler.Event = data;
     handler.Execute();
 }
 protected virtual void SaveCloudDataHandler(Playfab.SaveData data) {
 }
 protected void SaveCloudDataFilter(Playfab.SaveData data) {
     this.SaveCloudDataHandler(data);
 }
 protected virtual void DisplayNotificationMessageHandler(Playfab.NotificationMessage data, NotificationUI group) {
 }
 protected override void SaveCloudDataHandler(Playfab.SaveData data) {
 }
 protected override void NotifyLoginHandler(Playfab.UserLoggedIn data) {
 }
 protected virtual void SavePlayerStatsHandler(Playfab.SaveData data) {
 }
 protected override void DisplayNotificationMessageHandler(Playfab.NotificationMessage data, NotificationUI group) {
 }
 protected virtual void LoadPlayerStatsHandler(Playfab.LoadData data) {
 }
 protected override void SavePlayerStatsHandler(Playfab.SaveData data) {
 }
 protected void LoginSystemUserLoggedInFilter(Playfab.UserLoggedIn data) {
     this.LoginSystemUserLoggedInHandler(data);
 }
 protected override void LoadPlayerStatsHandler(Playfab.LoadData data) {
 }
 protected void LoginSystemUserLoggedOutFilter(Playfab.UserLoggedOut data) {
     this.LoginSystemUserLoggedOutHandler(data);
 }
 protected virtual void LoadCloudDataHandler(Playfab.LoadData data) {
 }
 protected void LoadTitleDataFilter(Playfab.LoadData data) {
     this.LoadTitleDataHandler(data);
 }
 protected void LogDebugMessageFilter(Playfab.NotificationMessage data) {
     this.LogDebugMessageHandler(data);
 }