summaryrefslogtreecommitdiff
path: root/grapher/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'grapher/Program.cs')
-rw-r--r--grapher/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/grapher/Program.cs b/grapher/Program.cs
new file mode 100644
index 0000000..b36ece3
--- /dev/null
+++ b/grapher/Program.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace grapher
+{
+ static class Program
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new RawAcceleration());
+ }
+ }
+}