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