using Sandbox;
namespace LibraryPlus;
internal sealed class TempLibrary : Library
{
internal TempLibrary( Package package, bool isPlus ) : base( package,
new TempFileSystem( package.ReferenceIdent() ) )
{
IsPlus = isPlus;
}
public override bool IsPlus { get; }
}