IReference.cs 511 B

1234567891011121314151617181920
  1. //------------------------------------------------------------
  2. // Game Framework
  3. // Copyright © 2013-2021 loyalsoft. All rights reserved.
  4. // Homepage: http://www.game7000.com/
  5. // Feedback: http://www.game7000.com/
  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. }