mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-21 03:47:58 -05:00
compression results in different lengths (overall better) but I doubt it will impact loading
12 lines
254 B
C#
12 lines
254 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace pkNX.Containers
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public class SegmentHeader
|
|
{
|
|
public int FileOffset;
|
|
public int MemoryOffset;
|
|
public int DecompressedSize;
|
|
}
|
|
} |