Exemplo n.º 1
0
        static void Main()
        {
            if (LibraryTest.Test() == false)
            {
                return;
            }

            RunGame();
        }
Exemplo n.º 2
0
        public IActionResult Index()
        {
            // not doing anything useful with this, just proving it can be accessed
            LibraryTest libraryTest = new LibraryTest()
            {
                Test1 = "Test 1",
                Test2 = "Test 2"
            };

            return(View());
        }
Exemplo n.º 3
0
        static void Main()
        {
            if (LibraryTest.Test() == false)
            {
                return;
            }

            using (DistanceDemo game = new DistanceDemo())
            {
                game.Run();
            }
        }
Exemplo n.º 4
0
        static void Main()
        {
            if (LibraryTest.Test() == false)
            {
                return;
            }

            using (SerializeDemo game = new SerializeDemo())
            {
                game.Run();
            }
        }
Exemplo n.º 5
0
        static void Main()
        {
            if (LibraryTest.Test() == false)
            {
                return;
            }

            using (Demo demo = new SoftDemo())
            {
                demo.Run();
            }
        }
Exemplo n.º 6
0
        static void Main()
        {
            if (LibraryTest.Test() == false)
            {
                return;
            }

            using (GImpactTestDemo game = new GImpactTestDemo())
            {
                game.Run();
            }
        }
Exemplo n.º 7
0
        static void Main()
        {
            if (LibraryTest.Test() == false)
            {
                return;
            }

            using (var game = new BenchmarkDemo())
            {
                game.Run();
            }
        }
Exemplo n.º 8
0
        static void Main()
        {
            if (LibraryTest.Test() == false)
            {
                return;
            }

            using (var game = new ConstraintDemo())
            {
                game.Run();
            }
        }
Exemplo n.º 9
0
        static void Main()
        {
            if (LibraryTest.Test() == false)
            {
                return;
            }

            using (MultiMaterialDemo game = new MultiMaterialDemo())
            {
                game.Run();
            }
        }
Exemplo n.º 10
0
        static void Main()
        {
            if (LibraryTest.Test() == false)
            {
                return;
            }

            using (CcdPhysicsDemo game = new CcdPhysicsDemo())
            {
                game.Run();
            }
        }
Exemplo n.º 11
0
        static void Main()
        {
            if (LibraryTest.Test() == false)
            {
                return;
            }

            using (Demo demo = new ConvexDecompositionDemo())
            {
                demo.Run();
            }
        }