correctly implemented IHandler

This commit is contained in:
shinichi
2020-09-30 15:26:34 +02:00
parent bd8994ad5b
commit 599b79ceee
4 changed files with 38 additions and 53 deletions

11
ProftaakRH/IHandler.cs Normal file
View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace ProftaakRH
{
interface IHandler
{
void setResistance(float percentage);
}
}