using AxibugEmuOnline.Client.InputDevices;
using System;
namespace AxibugEmuOnline.Client.Settings
{
///
/// 在所有的派生类中实现此接口以支持一种设备的绑定
/// 一种
/// 一个可以与多种设备建立绑定,但设备类型不可重复
///
public interface IDeviceBinder
where ENUM : Enum
where DEVICE : InputDevice_D
{
void Bind(DEVICE device, EmuCoreBinder.ControllerBinder controller);
}
}