using UnityEngine; namespace Mono.Event { public class ClickObjectEventArgs : GameEventArgs { public static readonly int EventId = typeof(ClickObjectEventArgs).GetHashCode(); public override int Id => EventId; public GameObject go; public ClickObjectEventArgs(GameObject go) { this.go = go; } } }