minesweeper_game/Library/PackageCache/com.unity.inputsystem@e2c83221d2dc/InputSystem/Controls/InputControlLayoutChange.cs
2025-03-15 14:30:26 -04: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
}
}