Rasagar/Library/PackageCache/com.unity.inputsystem/InputSystem/Controls/InputControlLayoutChange.cs
2024-08-26 23:07:20 +03: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
}
}