using System; using JetBrains.Annotations; using Unity.Cloud.Collaborate.Presenters; namespace Unity.Cloud.Collaborate.Views { /// /// Interface for all views in the UI. /// /// Type of presenter this view takes. interface IView where T : IPresenter { /// /// Presenter for this view. /// [NotNull] T Presenter { set; } } }