Example #1
0
        static void Main()
        {
            if (LibraryTest.Test() == false)
            {
                return;
            }

            RunGame();
        }
        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());
        }
Example #3
0
        static void Main()
        {
            if (LibraryTest.Test() == false)
            {
                return;
            }

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

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

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

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

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

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

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

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

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