Rasagar/Library/PackageCache/com.unity.ugui/Runtime/UGUI/EventSystem/EventHandle.cs

15 lines
218 B
C#
Raw Normal View History

2024-08-26 13:07:20 -07:00
using System;
namespace UnityEngine.EventSystems
{
[Flags]
/// <summary>
/// Enum that tracks event State.
/// </summary>
public enum EventHandle
{
Unused = 0,
Used = 1
}
}