Files
GhostEngine/src/Editor/Ghost.Data/Resources/AssetsPath.cs
2026-02-18 00:52:18 +09:00

8 lines
241 B
C#

namespace Ghost.Data.Resources;
public static class AssetsPath
{
public const string ASSETS_FOLDER = "Assets";
public readonly static string s_appIconPath = Path.Combine(AppContext.BaseDirectory, $"{ASSETS_FOLDER}/Icon-256.ico");
}