Unity 框架

IReference.cs 291B

123456789101112131415161718
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace TFramework
  5. {
  6. /// <summary>
  7. /// ÒýÓýӿÚ
  8. /// </summary>
  9. public interface IReference
  10. {
  11. /// <summary>
  12. /// ÖØÖÃÒýÓÃ
  13. /// </summary>
  14. void Reset();
  15. }
  16. }