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