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