using System.Collections; using System.Collections.Generic; using GameFramework; using GameFramework.Event; using UnityEngine; public class Ele_StartLearnTargetInfoEvent : GameEventArgs { public static readonly int EventId = typeof(Ele_StartLearnTargetInfoEvent).GetHashCode(); public override int Id { get { return EventId; } } public bool start = true; public static Ele_StartLearnTargetInfoEvent Create(bool _start=true) { Ele_StartLearnTargetInfoEvent args = ReferencePool.Acquire(); args.start = _start; return args; } public override void Clear() { } }