Files
Bachelor-Arbeit-Adrian-Haefner/Library/PackageCache/com.unity.inputsystem@7fe8299111a7/InputSystem/Devices/Commands/IInputDeviceCommandInfo.cs
adriadri6972 d3d9c5f833 upload project
2025-07-31 15:21:08 +02:00

16 lines
479 B
C#

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
{
/// <summary>
/// The data format identifier of the device command as a <see cref="FourCC"/> code.
/// </summary>
FourCC typeStatic { get; }
}
}