summaryrefslogtreecommitdiff
path: root/Program.cs
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2017-06-06 11:35:55 +0000
committerIan C <ianc@noddybox.co.uk>2017-06-06 11:35:55 +0000
commitc339f69055655290d57432940d3db9d88d9a0897 (patch)
treede29b3c28862a8c341a0088a664e4f8f40b9d832 /Program.cs
parenta1a2c114dec908650ed4bca33846375e58fffeca (diff)
Initial version.HEADmaster
Diffstat (limited to 'Program.cs')
-rw-r--r--Program.cs22
1 files changed, 22 insertions, 0 deletions
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
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new Form1());
+ }
+ }
+}