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