IndieGame/client/Packages/com.unity.inputsystem@1.7.0/InputSystem/Controls/InputControlLayoutChange.cs

13 lines
279 B
C#
Raw Normal View History

2024-10-11 10:12:15 +08: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
}
}