IT_TrainStudyDoneEvent.cs 600 B

12345678910111213141516171819202122232425262728
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using GameFramework;
  4. using GameFramework.Event;
  5. using UnityEngine;
  6. public class IT_TrainStudyDoneEvent : GameEventArgs
  7. {
  8. public static readonly int EventId = typeof(IT_TrainStudyDoneEvent).GetHashCode();
  9. public override int Id
  10. {
  11. get
  12. {
  13. return EventId;
  14. }
  15. }
  16. public static IT_TrainStudyDoneEvent Create()
  17. {
  18. IT_TrainStudyDoneEvent args = ReferencePool.Acquire<IT_TrainStudyDoneEvent>();
  19. return args;
  20. }
  21. public override void Clear()
  22. {
  23. }
  24. }