LubanHelper.cs 504 B

12345678910111213141516171819
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. public static class LubanHelper
  5. {
  6. //编辑器下的配置资源路径
  7. public const string ConfigResPath = "Packages/cn.etetet.yiuilubangen/Assets/LubanGen";
  8. [StaticField]
  9. public static List<string> StartConfigs = new()
  10. {
  11. "StartMachineConfigCategory",
  12. "StartProcessConfigCategory",
  13. "StartSceneConfigCategory",
  14. "StartZoneConfigCategory",
  15. };
  16. }
  17. }