ReStart_IT_TrainStudyEvent.cs 606 B

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