summaryrefslogtreecommitdiff
path: root/grapher/DeviceMenuForm.cs
diff options
context:
space:
mode:
authora1xd <[email protected]>2021-09-06 23:24:51 -0400
committera1xd <[email protected]>2021-09-23 22:33:13 -0400
commita8d48325d5e6fe0466502b865c82317b6f7410a2 (patch)
treea1d42734cda76cdf2a0b0c8134ef25f4729e99b3 /grapher/DeviceMenuForm.cs
parentincrease lut points capacity to 257 (diff)
downloadrawaccel-a8d48325d5e6fe0466502b865c82317b6f7410a2.tar.xz
rawaccel-a8d48325d5e6fe0466502b865c82317b6f7410a2.zip
get grapher building
Diffstat (limited to 'grapher/DeviceMenuForm.cs')
-rw-r--r--grapher/DeviceMenuForm.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/grapher/DeviceMenuForm.cs b/grapher/DeviceMenuForm.cs
new file mode 100644
index 0000000..00b36a8
--- /dev/null
+++ b/grapher/DeviceMenuForm.cs
@@ -0,0 +1,21 @@
+using grapher.Models.Serialized;
+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 grapher
+{
+ public partial class DeviceMenuForm : Form
+ {
+ public DeviceMenuForm(SettingsManager sm)
+ {
+ InitializeComponent();
+ }
+ }
+}