Files
Bachelor-Arbeit-Adrian-Haefner/Library/PackageCache/com.unity.inputsystem@7fe8299111a7/InputSystem/Controls/InputControlLayoutChange.cs
adriadri6972 d3d9c5f833 upload project
2025-07-31 15:21:08 +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
}
}