Organized the project files.

And also fixed some bugs.
This commit is contained in:
Bruce
2025-12-08 16:06:13 +08:00
parent ed7fe3af4b
commit d1813637c5
95 changed files with 46744 additions and 36366 deletions

14
PriFileFormat/ByteSpan.cs Normal file
View File

@@ -0,0 +1,14 @@
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;
}
}
}