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

12 lines
177 B
C#

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