Unity 框架

EventBase.cs 225B

1234567891011121314
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace TFramework
  5. {
  6. public class EventBase : IReference
  7. {
  8. public virtual void Reset()
  9. {
  10. }
  11. }
  12. }