Initial Commit

This commit is contained in:
Sebastian Cabrera 2021-08-02 05:44:37 -04:00
parent 53eb92e9af
commit 270ab7d11f
15341 changed files with 700234 additions and 0 deletions

View file

@ -0,0 +1,38 @@
using System;
using Unity.Cloud.Collaborate.Views;
namespace Unity.Cloud.Collaborate.Presenters
{
internal interface IMainPresenter : IPresenter
{
/// <summary>
/// Create the history presenter and wire it up to the history view.
/// </summary>
/// <param name="view">View to wire to.</param>
/// <returns>The created presenter.</returns>
IHistoryPresenter AssignHistoryPresenter(IHistoryView view);
/// <summary>
/// Create the changes presenter and wire it up to the changes view.
/// </summary>
/// <param name="view">View to wire to.</param>
/// <returns>The created presenter.</returns>
IChangesPresenter AssignChangesPresenter(IChangesView view);
/// <summary>
/// Request cancel current job.
/// </summary>
void RequestCancelJob();
/// <summary>
/// Update value of current tab index.
/// </summary>
/// <param name="index">New tab index.</param>
void UpdateTabIndex(int index);
/// <summary>
/// Request a back navigation.
/// </summary>
void NavigateBack();
}
}