APM/Library/PackageCache/com.unity.inputsystem@ea5ab5b33a26/InputSystem/Controls/InputControlLayoutChange.cs
2025-11-17 15:02:30 +07:00

13 lines
279 B
C#

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
}
}