Files
I150/srcs/RobotNet10/RobotApp/RobotNet10.RobotApp/Interfaces/IRobotController.cs
2026-07-03 16:37:12 +07:00

9 lines
155 B
C#

namespace RobotNet10.RobotApp.Interfaces;
public interface IRobotController
{
void Pause();
void Resume();
bool TryClearFault();
}