Files
EnglewoodLAB/Assets/Scripts/Constants/ResourceURL.cs
2026-03-09 17:00:30 +09:00

13 lines
323 B
C#

using UnityEngine;
namespace EnglewoodLAB.Constants
{
public class ResourceURL
{
public static readonly string UIPrefabFolderPath = "UI/Prefab/EnglewoodLAB/";
public static readonly string UISpriteFolderPath = "UI/Sprites/";
public static readonly string DataFolderPath = "Data/";
}
}