Advertisement
Guest User

RunLauncher

a guest
Oct 28th, 2013
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.44 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using System.Windows.Forms;
  6.  
  7. namespace kjpUnityGameLauncherTemplate
  8. {
  9.     static class RunLauncher
  10.     {
  11.         [STAThread]
  12.         static void Main()
  13.         {
  14.             Application.EnableVisualStyles();
  15.             Application.SetCompatibleTextRenderingDefault(false);
  16.             Application.Run(new Launcher());
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement