mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2026-02-25 11:08:17 +01:00
10 lines
258 B
C#
10 lines
258 B
C#
using System.Collections.Immutable;
|
|
|
|
namespace Phantom.Common.Data.Agent.Instance;
|
|
|
|
public interface IInstancePathResolver {
|
|
string? Global(ImmutableArray<string> segments);
|
|
string? Local(ImmutableArray<string> segments);
|
|
string? Runtime(Guid guid);
|
|
}
|