This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
RomVault/ROMVault2/SupportedFiles/SevenZip/Structure/BindPair.cs
2015-03-18 08:48:48 -05:00

25 lines
605 B
C#

using System.IO;
namespace ROMVault2.SupportedFiles.SevenZip.Structure
{
public class BindPair
{
public ulong InIndex;
public ulong OutIndex;
public void Read(BinaryReader br)
{
InIndex = br.ReadEncodedUInt64();
Util.log("InIndex = " + InIndex);
OutIndex = br.ReadEncodedUInt64();
Util.log("OutIndex = " + OutIndex);
}
public void Write(BinaryWriter bw)
{
bw.WriteEncodedUInt64(InIndex);
bw.WriteEncodedUInt64(OutIndex);
}
}
}