13 lines
238 B
C#

using System.Threading;
using RoboidControl;
class Program {
static void Main() {
BB2B bb2b = new(ParticipantUDP.Isolated());
while (true) {
bb2b.Update();
Thread.Sleep(100);
}
}
}