Initial Commit
This commit is contained in:
parent
53eb92e9af
commit
270ab7d11f
15341 changed files with 700234 additions and 0 deletions
|
@ -0,0 +1,19 @@
|
|||
using System;
|
||||
using JetBrains.Annotations;
|
||||
using Unity.Cloud.Collaborate.Presenters;
|
||||
|
||||
namespace Unity.Cloud.Collaborate.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// Interface for all views in the UI.
|
||||
/// </summary>
|
||||
/// <typeparam name="T">Type of presenter this view takes.</typeparam>
|
||||
interface IView<in T> where T : IPresenter
|
||||
{
|
||||
/// <summary>
|
||||
/// Presenter for this view.
|
||||
/// </summary>
|
||||
[NotNull]
|
||||
T Presenter { set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue