mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-14 04:19:24 +00:00
12 lines
316 B
C#
12 lines
316 B
C#
using Daybreak.Shared.Services.UMod;
|
|
|
|
namespace Daybreak.Windows.Services.UMod;
|
|
|
|
/// <summary>
|
|
/// Windows implementation - paths are used as-is since mods run natively.
|
|
/// </summary>
|
|
public sealed class ModPathResolver : IModPathResolver
|
|
{
|
|
public string ResolveForModLoader(string nativePath) => nativePath;
|
|
}
|