mirror of
https://github.com/RawAccelOfficial/rawaccel.git
synced 2025-05-15 05:44:33 +02:00
21 lines
437 B
C#
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();
|
|
}
|
|
}
|
|
}
|