LaboratoryProtection/Assets/UnityTest/ZXL/Scripts/Event/Args/SureButtonEventArgs.cs

17 lines
405 B
C#

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;
}
}
}