12345678910111213141516171819 |
- //------------------------------------------------------------
- // Game Framework
- // Copyright © 2013-2021 loyalsoft. All rights reserved.
- // Homepage: http://www.game7000.com/
- // Feedback: http://www.game7000.com/
- //------------------------------------------------------------
- using GameFramework.Entity;
- using UnityEngine;
- namespace UnityGameFramework.Runtime
- {
- /// <summary>
- /// 实体组辅助器基类。
- /// </summary>
- public abstract class EntityGroupHelperBase : MonoBehaviour, IEntityGroupHelper
- {
- }
- }
|