15 lines
218 B
C#
15 lines
218 B
C#
|
using System;
|
||
|
|
||
|
namespace UnityEngine.EventSystems
|
||
|
{
|
||
|
[Flags]
|
||
|
/// <summary>
|
||
|
/// Enum that tracks event State.
|
||
|
/// </summary>
|
||
|
public enum EventHandle
|
||
|
{
|
||
|
Unused = 0,
|
||
|
Used = 1
|
||
|
}
|
||
|
}
|