Files
Proftaak-RH-B4/ProftaakRH/IDataReceiver.cs
2020-09-23 13:22:14 +02:00

13 lines
201 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ProftaakRH
{
interface IDataReceiver
{
void BPM(byte[] bytes);
void Bike(byte[] bytes);
}
}