#nullable enable
using System.IO;
using FileSystem = Editor.FileSystem;
namespace LibraryPlus;
public sealed class ProjectFileSystem : LibraryFileSystem
{
internal ProjectFileSystem( string folderName ) : base( type =>
Path.Combine( FileSystem.Libraries.GetFullPath( "." ), folderName,
type == "Settings" ? "" : type ) )
{
}
}