diff options
| author | BuildTools <unconfigured@null.spigotmc.org> | 2017-03-24 23:40:17 -0400 |
|---|---|---|
| committer | BuildTools <unconfigured@null.spigotmc.org> | 2017-03-24 23:40:17 -0400 |
| commit | 2f66dacf8090516265a3b4652200bc4c457c5dd6 (patch) | |
| tree | 43b0566bc81cfa9e35ed996a55ab44f1f275e8f7 /AleeOS/Program.cs | |
| parent | 6cdc671fe7862f0f1c06a1791d5dbafd07359196 (diff) | |
| download | AleeOS-CSharp-2f66dacf8090516265a3b4652200bc4c457c5dd6.tar.gz AleeOS-CSharp-2f66dacf8090516265a3b4652200bc4c457c5dd6.tar.bz2 AleeOS-CSharp-2f66dacf8090516265a3b4652200bc4c457c5dd6.zip | |
Add project files.
Diffstat (limited to 'AleeOS/Program.cs')
| -rw-r--r-- | AleeOS/Program.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/AleeOS/Program.cs b/AleeOS/Program.cs new file mode 100644 index 0000000..93ff13c --- /dev/null +++ b/AleeOS/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace AleeOS +{ + static class Program + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} |
