Initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user