blob: b85afb534e8fddfcadf89b1916260a839c7f0e8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
using System.IO;
namespace MonoGame.Extended.Content.Pipeline
{
public static class PathExtensions
{
public static string GetApplicationFullPath(params string[] pathParts)
{
var path = Path.Combine(pathParts);
return Path.Combine(AppDomain.CurrentDomain.BaseDirectory, path);
}
}
}
|