Files
Bruce d1813637c5 Organized the project files.
And also fixed some bugs.
2025-12-08 16:06:13 +08:00

15 lines
238 B
C#

using System.Runtime.InteropServices;
namespace PriFileFormat
{
public struct ByteSpan
{
public long Offset;
public uint Length;
internal ByteSpan (long offset, uint length)
{
Offset = offset;
Length = length;
}
}
}