InputDeviceHandPartStatus.cs 518 B

123456789101112131415161718
  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.InputDeviceHand {
  8. public class InputDeviceHandPartStatus : InputDevicePartStatusBase {
  9. public InputDeviceHandPart inputDeviceHandPart;
  10. public InputDeviceHandPartStatus(InputDeviceHandPart _inputDeviceHandPart) : base(_inputDeviceHandPart) {
  11. inputDeviceHandPart = _inputDeviceHandPart;
  12. }
  13. }
  14. }