EntityGroupHelperBase.cs 560 B

12345678910111213141516171819
  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. using GameFramework.Entity;
  8. using UnityEngine;
  9. namespace UnityGameFramework.Runtime
  10. {
  11. /// <summary>
  12. /// 实体组辅助器基类。
  13. /// </summary>
  14. public abstract class EntityGroupHelperBase : MonoBehaviour, IEntityGroupHelper
  15. {
  16. }
  17. }