Ejemplo n.º 1
0
        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);
        }
Ejemplo n.º 2
0
        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);
        }