Firstborn/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputControlLayoutChange.cs

13 lines
279 B
C#
Raw Normal View History

2023-03-28 13:24:16 -04:00
namespace UnityEngine.InputSystem
{
/// <summary>
/// Enum used to identity the change type for the <see cref="InputSystem.onLayoutChange"/> event.
/// </summary>
public enum InputControlLayoutChange
{
Added,
Removed,
Replaced
}
}