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