Files
BookRPG/Library/PackageCache/com.unity.inputsystem@21a28c3a6c83/InputSystem/Controls/InputControlLayoutChange.cs

13 lines
279 B
C#
Raw Normal View History

2026-07-16 21:49:59 +01: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
}
}