mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Move PartitionFileSystemBuilder, ConcatenationStorage
This commit is contained in:
parent
c5f904710a
commit
d0a1d98885
3 changed files with 5 additions and 6 deletions
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using LibHac.Fs;
|
||||
|
||||
namespace LibHac.FsSystem;
|
||||
namespace LibHac.Tools.FsSystem;
|
||||
|
||||
public class ConcatenationStorage : IStorage
|
||||
{
|
||||
|
@ -167,4 +167,4 @@ public class ConcatenationStorage : IStorage
|
|||
Size = length;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -2,9 +2,8 @@
|
|||
using System.IO;
|
||||
using System.Linq;
|
||||
using LibHac.Fs;
|
||||
using LibHac.Tools.FsSystem;
|
||||
|
||||
namespace LibHac.FsSystem;
|
||||
namespace LibHac.Tools.FsSystem;
|
||||
|
||||
public class ConcatenationStorageBuilder
|
||||
{
|
|
@ -7,11 +7,11 @@ using LibHac.Common;
|
|||
using LibHac.Crypto;
|
||||
using LibHac.Fs;
|
||||
using LibHac.Fs.Fsa;
|
||||
using LibHac.FsSystem;
|
||||
using LibHac.Tools.Fs;
|
||||
using LibHac.Tools.FsSystem;
|
||||
using LibHac.Util;
|
||||
|
||||
namespace LibHac.FsSystem;
|
||||
namespace LibHac.Tools.FsSystem;
|
||||
|
||||
public class PartitionFileSystemBuilder
|
||||
{
|
Loading…
Reference in a new issue