예제 #1
0
파일: Program.cs 프로젝트: Tidizzle/TEngine
        public static void Main(string[] args)
        {
            TApplication App = new TApplication(800, 600, false, true, true);

            App.AddContent(new TestFrame(), new TestFrame2());
            App.Run();
        }
예제 #2
0
파일: Program.cs 프로젝트: Tidizzle/TEngine
        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();
        }