mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
14 lines
475 B
C#
14 lines
475 B
C#
namespace Daybreak.Shared.Services.UMod;
|
|
|
|
/// <summary>
|
|
/// Resolves native file paths to the format expected by mod loaders running inside the game process.
|
|
/// On Windows, paths are returned as-is. On Linux, paths are converted to Wine-compatible paths.
|
|
/// </summary>
|
|
public interface IModPathResolver
|
|
{
|
|
/// <summary>
|
|
/// Converts a native file path to the format expected by the mod loader.
|
|
/// </summary>
|
|
string ResolveForModLoader(string nativePath);
|
|
}
|