Files
Test-Multiplayer/Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Controls/InputControlLayoutChange.cs
pelpanagiotis 329b7d3183 First Commit
2025-12-21 18:31:02 +02: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
}
}