Advertisement
Guest User

Program.cs

a guest
Jan 19th, 2014
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.32 KB | None | 0 0
  1. using System;
  2. using System.Windows.Forms;
  3.  
  4. namespace LuaDecrypter
  5. {
  6.   internal static class Program
  7.   {
  8.     [STAThread]
  9.     private static void Main()
  10.     {
  11.       Application.EnableVisualStyles();
  12.       Application.SetCompatibleTextRenderingDefault(false);
  13.       Application.Run((Form) new MainForm());
  14.     }
  15.   }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement