using Unity.Cloud.Collaborate.Presenters; namespace Unity.Cloud.Collaborate.Views { internal interface IStartView : IView { /// /// Set the text for the view. /// string Text { set; } /// /// Set the text for the button in the view. /// string ButtonText { set; } /// /// Set the visibility of the button. /// /// True if the button should be visible. void SetButtonVisible(bool isVisible); } }