InputDataBT3Dof.cs 506 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using UnityEngine;
  7. namespace SC.XR.Unity.Module_InputSystem.InputDeviceGC.BT3Dof {
  8. public class InputDataBT3Dof : InputDataGC {
  9. public InputDeviceBT3DofPart inputDeviceBT3DofPart;
  10. public InputDataBT3Dof(InputDeviceBT3DofPart inputDeviceBT3DofPart) : base(inputDeviceBT3DofPart) {
  11. this.inputDeviceBT3DofPart = inputDeviceBT3DofPart;
  12. }
  13. }
  14. }