diff options
| author | a1xd <[email protected]> | 2021-09-06 23:24:51 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2021-09-07 05:08:25 -0400 |
| commit | 404b272a558b0bb915e182b01849c9631f829619 (patch) | |
| tree | 5479599472ed0d88561f12677898febcce6fe4d7 /grapher/DeviceMenuForm.cs | |
| parent | increase lut points capacity to 257 (diff) | |
| download | rawaccel-404b272a558b0bb915e182b01849c9631f829619.tar.xz rawaccel-404b272a558b0bb915e182b01849c9631f829619.zip | |
get grapher building
Diffstat (limited to 'grapher/DeviceMenuForm.cs')
| -rw-r--r-- | grapher/DeviceMenuForm.cs | 21 |
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(); + } + } +} |