File size: 341 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 | using UnityEngine.InputSystem.Utilities;
namespace UnityEngine.InputSystem.LowLevel
{
/// <summary>
/// Interface implemented by all input device command structs which reports the data format identifier of the command.
/// </summary>
public interface IInputDeviceCommandInfo
{
FourCC typeStatic { get; }
}
}
|