mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-15 23:19:29 +00:00
14 lines
359 B
C#
14 lines
359 B
C#
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);
|
|
}
|
|
}
|
|
} |