9 lines
155 B
C#
9 lines
155 B
C#
namespace RobotNet10.RobotApp.Interfaces;
|
|
|
|
public interface IRobotController
|
|
{
|
|
void Pause();
|
|
void Resume();
|
|
bool TryClearFault();
|
|
}
|