ConfigPathAttribute.cs 493 B

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