rawaccel/grapher/DeviceMenuForm.cs
2021-09-07 05:08:25 -04:00

21 lines
437 B
C#

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