IReference.cs 516 B

1234567891011121314151617181920
  1. //------------------------------------------------------------
  2. // Game Framework
  3. // Copyright © 2013-2021 Jiang Yin. All rights reserved.
  4. // Homepage: https://gameframework.cn/
  5. // Feedback: mailto:ellan@gameframework.cn
  6. //------------------------------------------------------------
  7. namespace GameFramework
  8. {
  9. /// <summary>
  10. /// 引用接口。
  11. /// </summary>
  12. public interface IReference
  13. {
  14. /// <summary>
  15. /// 清理引用。
  16. /// </summary>
  17. void Clear();
  18. }
  19. }