diff options
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(); + } + } +} |