15 lines
477 B
C#
15 lines
477 B
C#
using System.IO;
|
|
|
|
namespace Aliciza.UXTool
|
|
{
|
|
public static class Def_UXGUIPath
|
|
{
|
|
public static readonly string ConfigPath = "Packages/com.alicizax.uxtool/Editor/UXGUI/Res/Config";
|
|
|
|
public static readonly string ComponentRes = "Packages/com.alicizax.uxtool/Editor/UXGUI/Res/Component/";
|
|
|
|
public static readonly string UIResRootPath = "Assets/Bundles/UI";
|
|
public static readonly string DefaultLayoutPath = "Assets/Default.wlt";
|
|
}
|
|
}
|