riff/Program.cs
2025-07-01 23:02:36 +00:00

10 lines
258 B
C#

namespace riff;
class Program
{
static void Main(string[] args)
{
var cube = new Cube("localhost", 6667, "mysterious_cube", "~nebula https://git.tilde.town/nebula/riff");
new Thread(new ThreadStart(cube.MainLoop)).Start();
}
}