Files
BQP/srcs/RobotNet10/RobotApp/RobotNet10.RobotApp/Interfaces/IRobotActionProvider.cs
2026-07-13 09:25:40 +07:00

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