Files
NebulaLauncher/Nebula.Shared/FileApis/AssemblyApi.cs
2025-01-05 17:05:23 +03:00

20 lines
394 B
C#

using Robust.LoaderApi;
namespace Nebula.Shared.FileApis;
public class AssemblyApi : IFileApi
{
private readonly IFileApi _root;
public AssemblyApi(IFileApi root)
{
_root = root;
}
public bool TryOpen(string path, out Stream? stream)
{
return _root.TryOpen(path, out stream);
}
public IEnumerable<string> AllFiles => _root.AllFiles;
}