Files
Proftaak-RH-B4/ProftaakRH/IHandler.cs
2020-09-30 16:22:26 +02:00

12 lines
184 B
C#

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