You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using System; |
|
|
|
namespace UnityEngine.EventSystems |
|
{ |
|
[Flags] |
|
/// <summary> |
|
/// Enum that tracks event State. |
|
/// </summary> |
|
public enum EventHandle |
|
{ |
|
Unused = 0, |
|
Used = 1 |
|
} |
|
}
|
|
|