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