diff options
| author | Jacob Palecki <[email protected]> | 2020-07-24 11:15:04 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-07-24 11:15:04 -0700 |
| commit | 02f5d86a891edb2f49851b400b0d2b2f8b4e4f98 (patch) | |
| tree | 31494b77056e89388f6220f68927caa30c79ecf2 /grapher/Program.cs | |
| parent | Added simple c++/cli wrapper (diff) | |
| download | rawaccel-02f5d86a891edb2f49851b400b0d2b2f8b4e4f98.tar.xz rawaccel-02f5d86a891edb2f49851b400b0d2b2f8b4e4f98.zip | |
Add a basic windows forms grapher
Diffstat (limited to 'grapher/Program.cs')
| -rw-r--r-- | grapher/Program.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/grapher/Program.cs b/grapher/Program.cs new file mode 100644 index 0000000..afd45ba --- /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 Form1()); + } + } +} |