12 lines
192 B
C#

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