WuhuIslandTesting/Library/PackageCache/com.unity.collab-proxy@1.17.7/Editor/Collaborate/Presenters/IMainPresenter.cs
2025-01-07 02:06:59 +01:00

38 lines
1.2 KiB
C#

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();
}
}