16 lines
525 B
C#
16 lines
525 B
C#
using RobotNet10.FleetManager.Script;
|
|
using RobotNet10.FleetManager.Script.Shared;
|
|
|
|
namespace RobotNet10.FleetManager.Models;
|
|
|
|
/// <summary>
|
|
/// FleetManager Script Globals - Provides APIs for scripts to interact with FleetManager
|
|
/// </summary>
|
|
public class FleetManagerScriptGlobals(IRobotManager robotManager, ILayoutManager layoutManager) : IFleetManagerScriptGlobals
|
|
{
|
|
public IRobotManager RobotManager { get; } = robotManager;
|
|
|
|
public ILayoutManager LayoutManager { get; } = layoutManager;
|
|
}
|
|
|