10 lines
258 B
C#
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();
|
|
}
|
|
} |