Privatize

This commit is contained in:
Matt Nadareski
2025-08-29 10:04:52 -04:00
parent 6112cf8d60
commit db10721386

View File

@@ -110,15 +110,6 @@ namespace UnshieldSharpInternal
#region Reading
/// <summary>
/// Open the next volume based on the current index
/// </summary>
public bool OpenNextVolume(out ushort nextVolume)
{
nextVolume = (ushort)(_volumeId + 1);
return OpenVolume(nextVolume);
}
/// <summary>
/// Read a certain number of bytes from the current volume
/// </summary>
@@ -158,6 +149,15 @@ namespace UnshieldSharpInternal
return true;
}
/// <summary>
/// Open the next volume based on the current index
/// </summary>
private bool OpenNextVolume(out ushort nextVolume)
{
nextVolume = (ushort)(_volumeId + 1);
return OpenVolume(nextVolume);
}
/// <summary>
/// Open the volume at the inputted index
/// </summary>