using UnityTest.ZXL; namespace Mono.Event { public class SureButtonEventArgs : GameEventArgs { public static readonly int EventId = typeof(SureButtonEventArgs).GetHashCode(); public override int Id => EventId; public SureButton sureButton; public SureButtonEventArgs(SureButton sureButton) { this.sureButton = sureButton; } } }