Files
Fishing2/Assets/Scripts/Fishing2~/Helper/PathHelper.cs

13 lines
206 B
C#

using System.IO;
namespace NBF
{
public static class PathHelper
{
public static string GetFullPath(string path)
{
return Path.Combine("gfx", path);
}
}
}