using System.Collections; using System.Collections.Generic; using GameFramework; using GameFramework.Event; using UnityEngine; public class Cool_TrainStudyShowTargetInfoEvent : GameEventArgs { public static readonly int EventId = typeof(Cool_TrainStudyShowTargetInfoEvent).GetHashCode(); public override int Id { get { return EventId; } } public CoolHardWaryType _Type; public static Cool_TrainStudyShowTargetInfoEvent Create(CoolHardWaryType type) { Cool_TrainStudyShowTargetInfoEvent args = ReferencePool.Acquire(); args._Type = type; return args; } public override void Clear() { } }