1
0
Fork 0
LaboratoryProtection/Assets/UnityTest/ZXL/Scripts/Event/Args/ClickObjectEventArgs.cs

17 lines
374 B
C#
Raw Normal View History

2023-09-13 15:04:19 +08:00
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;
}
}
}