Files

15 lines
218 B
C#
Raw Permalink Normal View History

2025-01-17 13:10:20 +01:00
using System;
namespace UnityEngine.EventSystems
{
[Flags]
/// <summary>
/// Enum that tracks event State.
/// </summary>
public enum EventHandle
{
Unused = 0,
Used = 1
}
}