12 lines
297 B
C#
12 lines
297 B
C#
using RobotNet.VDA5050.Type;
|
|
using RobotNet10.RobotApp.Services.Robot.Actions;
|
|
|
|
namespace RobotNet10.RobotApp.Interfaces;
|
|
|
|
public interface IRobotActionProvider
|
|
{
|
|
bool IsInitialized { get; }
|
|
RobotAction GetRobotAction(ActionType type);
|
|
RobotAction[] GetRobotActions();
|
|
}
|