IStartView.cs 626 B

1234567891011121314151617181920212223
  1. using Unity.Cloud.Collaborate.Presenters;
  2. namespace Unity.Cloud.Collaborate.Views
  3. {
  4. internal interface IStartView : IView<IStartPresenter>
  5. {
  6. /// <summary>
  7. /// Set the text for the view.
  8. /// </summary>
  9. string Text { set; }
  10. /// <summary>
  11. /// Set the text for the button in the view.
  12. /// </summary>
  13. string ButtonText { set; }
  14. /// <summary>
  15. /// Set the visibility of the button.
  16. /// </summary>
  17. /// <param name="isVisible">True if the button should be visible.</param>
  18. void SetButtonVisible(bool isVisible);
  19. }
  20. }