public static void Main() { NetworkLayer net = Singleton.Instance; if (net == null) { Debug.Print("Failed to initialize network layer"); return; } Monitor monitor = new Monitor(); NetworkTest test = new NetworkTest(net, monitor); test.Run(null); }