13 lines
206 B
C#
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);
|
|
}
|
|
}
|
|
} |