riff/Program.cs

10 lines
215 B
C#

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