summaryrefslogtreecommitdiffstats
path: root/src/CS340.Plotter/Plot.cs
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-04-20 12:57:35 -0500
committerToby Vincent <tobyv13@gmail.com>2021-04-20 12:57:35 -0500
commit6bfed779552aa2fa05d83513ce78c9b04745db97 (patch)
treef076d974b4dd1bb6d7e6a45f96dbf2bc94446955 /src/CS340.Plotter/Plot.cs
parent9891f2e94aef0e8f197d73dcc64eb9dac804f52a (diff)
added Plotter WinForms class
Diffstat (limited to 'src/CS340.Plotter/Plot.cs')
-rw-r--r--src/CS340.Plotter/Plot.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/CS340.Plotter/Plot.cs b/src/CS340.Plotter/Plot.cs
new file mode 100644
index 0000000..7b274d8
--- /dev/null
+++ b/src/CS340.Plotter/Plot.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Plotter
+{
+ public partial class Plot : Form
+ {
+ public Plot()
+ {
+ InitializeComponent();
+ }
+
+ }
+}