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