예제 #1
0
파일: Program.cs 프로젝트: mrommel/dx11
        static void Main(string[] args)
        {
            Configuration.EnableObjectTracking = true;
            var app = new MirrorDemo(Process.GetCurrentProcess().Handle);

            if (!app.Init())
            {
                return;
            }
            app.Run();
        }
예제 #2
0
 static void Main(string[] args) {
     Configuration.EnableObjectTracking = true;
     var app = new MirrorDemo(Process.GetCurrentProcess().Handle);
     if (!app.Init()) {
         return;
     }
     app.Run();
 }