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