Beispiel #1
0
        public static void Main(string[] args)
        {
            TApplication App = new TApplication(800, 600, false, true, true);

            App.AddContent(new TestFrame(), new TestFrame2());
            App.Run();
        }
Beispiel #2
0
        public static void Main(string[] args)
        {
            var App = new TApplication(1890, 1020, false, true, true);

            App.IsFixedTimeStep = false;
            App.graphics.SynchronizeWithVerticalRetrace = false;

            App.AddContent(new World());
            App.Run();
        }