Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Windows.Forms;
- namespace Direct3D_Course
- {
- static class Program
- {
- [STAThread]
- static void Main()
- {
- using(Form1 DxForm = new Form1())
- {
- DxForm.InitializeDevice();
- Application.Run(DxForm);
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment