From c339f69055655290d57432940d3db9d88d9a0897 Mon Sep 17 00:00:00 2001 From: Ian C Date: Tue, 6 Jun 2017 11:35:55 +0000 Subject: Initial version. --- Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Program.cs (limited to 'Program.cs') diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..c664881 --- /dev/null +++ b/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Rip81Font +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} -- cgit v1.2.3