Files
LowPolyBattleSim/Library/PackageCache/com.unity.inputsystem@e2c83221d2dc/InputSystem/Controls/InputControlLayoutChange.cs
Caleb Sandford deQuincey ecdd3e2a9e intial commit
2025-06-27 23:27:49 +01: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
}
}