UnityGame/Library/PackageCache/com.unity.inputsystem/InputSystem/Controls/InputControlLayoutChange.cs

13 lines
279 B
C#
Raw Normal View History

2024-10-27 10:53:47 +03: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
}
}