mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Move streams to Streams namespace
This commit is contained in:
parent
02464eaa60
commit
35475ac5a8
6 changed files with 7 additions and 5 deletions
|
@ -183,7 +183,7 @@ namespace hactoolnet
|
|||
return;
|
||||
}
|
||||
|
||||
var section = title.MainNca.Sections.FirstOrDefault(x => x.IsExefs == true);
|
||||
var section = title.MainNca.Sections.FirstOrDefault(x => x.IsExefs);
|
||||
|
||||
if (section == null)
|
||||
{
|
||||
|
@ -313,7 +313,7 @@ namespace hactoolnet
|
|||
return;
|
||||
}
|
||||
|
||||
var exefsSection = mainNca.Sections.FirstOrDefault(x => x.IsExefs == true);
|
||||
var exefsSection = mainNca.Sections.FirstOrDefault(x => x.IsExefs);
|
||||
|
||||
if (exefsSection == null)
|
||||
{
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using libhac.Streams;
|
||||
|
||||
namespace libhac.Savefile
|
||||
{
|
||||
|
|
|
@ -4,6 +4,7 @@ using System.Diagnostics;
|
|||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using libhac.Streams;
|
||||
|
||||
namespace libhac
|
||||
{
|
||||
|
|
|
@ -27,7 +27,7 @@ using System.Collections.Generic;
|
|||
using System.IO;
|
||||
using System.Threading;
|
||||
|
||||
namespace libhac
|
||||
namespace libhac.Streams
|
||||
{
|
||||
internal class CombinationStream : Stream
|
||||
{
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace libhac
|
||||
namespace libhac.Streams
|
||||
{
|
||||
public class SubStream : Stream
|
||||
{
|
|
@ -1,4 +1,5 @@
|
|||
using System.IO;
|
||||
using libhac.Streams;
|
||||
|
||||
namespace libhac
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue