Files
Bombaleila/Library/PackageCache/com.unity.inputsystem@57d0e36f6123/InputSystem/Controls/InputControlLayoutChange.cs
2026-03-03 00:39:30 +05: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
}
}