暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IInputDeviceCommandInfo.cs 479B

123456789101112131415
  1. using UnityEngine.InputSystem.Utilities;
  2. namespace UnityEngine.InputSystem.LowLevel
  3. {
  4. /// <summary>
  5. /// Interface implemented by all input device command structs which reports the data format identifier of the command.
  6. /// </summary>
  7. public interface IInputDeviceCommandInfo
  8. {
  9. /// <summary>
  10. /// The data format identifier of the device command as a <see cref="FourCC"/> code.
  11. /// </summary>
  12. FourCC typeStatic { get; }
  13. }
  14. }