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