summaryrefslogtreecommitdiff
path: root/grapher/DeviceMenuForm.cs
blob: 00b36a846d2a7b2868a58d4771528d770ee582e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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();
        }
    }
}