ConfigPathAttribute.cs 480 B

123456789101112131415161718
  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. using System;
  8. namespace UnityGameFramework.Editor
  9. {
  10. /// <summary>
  11. /// 配置路径属性。
  12. /// </summary>
  13. public abstract class ConfigPathAttribute : Attribute
  14. {
  15. }
  16. }