123456789101112131415161718 |
- //------------------------------------------------------------
- // Game Framework
- // Copyright © 2013-2021 loyalsoft. All rights reserved.
- // Homepage: http://www.game7000.com/
- // Feedback: http://www.game7000.com/
- //------------------------------------------------------------
- using System;
- namespace UnityGameFramework.Editor
- {
- /// <summary>
- /// 配置路径属性。
- /// </summary>
- public abstract class ConfigPathAttribute : Attribute
- {
- }
- }
|