Last-Modified: Fri, 24 Jul 2026 02:31:03 GMT
Expires: Fri, 24 Jul 2026 02:36:03 GMT
Tango - Twine softwares
Commits per author per week (path 'Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/908ee6354f1b001a16f5f0f2a8f3853f')
| Author | W27 2026 | W28 2026 | W29 2026 | W30 2026 | Total |
| Total | 0 | 0 | 0 | 0 | 0 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.MachineStudio.Common;
using Tango.SharedUI;
namespace Tango.MachineStudio.UI.SupervisingController
{
/// <summary>
/// Represents a supervising controller pattern view contract.
/// </summary>
/// <seealso cref="Tango.SharedUI.IView" />
public interface IMainView : IView
{
///// <summary>
///// Navigates to the specified studio module.
///// </summary>
///// <param name="module">The module.</param>
//void NavigateToModule(IStudioModule module);
}
}