Guest User

Program

a guest
Apr 2nd, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. using System;
  2. using System.Windows.Forms;
  3.  
  4.  
  5. namespace Direct3D_Course
  6. {
  7.     static class Program
  8.     {
  9.         [STAThread]
  10.        
  11.         static void Main()
  12.         {
  13.         using(Form1 DxForm = new Form1())
  14.             {
  15.                 DxForm.InitializeDevice();
  16.                 Application.Run(DxForm);
  17.             }
  18.         }
  19.     }
  20. }
Add Comment
Please, Sign In to add comment