No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

33 líneas
752 B

  1. using System;
  2. using CIG.Translation;
  3. using UnityEngine;
  4. public class CloudSaveConflictPopupView : PopupBaseView
  5. {
  6. public void SetLevel(int currentLevel, int cloudLevel)
  7. {
  8. this._currentLevelLabel.LocalizedString = Localization.Integer(currentLevel);
  9. this._cloudLevelLabel.LocalizedString = Localization.Integer(cloudLevel);
  10. }
  11. public void OnRestoreBackupPressed()
  12. {
  13. ((CloudSaveConflictPopupState)this.State).ChooseCloud();
  14. }
  15. public void OnContinueCurrentPressed()
  16. {
  17. ((CloudSaveConflictPopupState)this.State).ChooseLocal();
  18. }
  19. public override void OnBlackOverlayClicked()
  20. {
  21. }
  22. [SerializeField]
  23. private LocalizedText _cloudLevelLabel;
  24. [SerializeField]
  25. private LocalizedText _currentLevelLabel;
  26. }