Files
Proftaak-RH-B4/ProftaakRH/IHandler.cs

14 lines
206 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ProftaakRH
{
public interface IHandler
{
void setResistance(float percentage);
void stop();
}
}