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