mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
14 lines
298 B
C#
14 lines
298 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace MonoGame.Extended.Content.Pipeline
|
|
{
|
|
public static class PathExtensions
|
|
{
|
|
public static string GetApplicationFullPath(string path)
|
|
{
|
|
return Path.Combine(AppDomain.CurrentDomain.BaseDirectory, path);
|
|
}
|
|
}
|
|
}
|