protected InputDevice() { this.deviceName = "Generic Input Device"; deviceIndex = InputSystem.GetNewDeviceIndex(this); }
protected InputDevice(string deviceName, List <InputControlData> controls) { SetControls(controls); this.deviceName = deviceName; deviceIndex = InputSystem.GetNewDeviceIndex(this); }