mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-20 19:38:15 -05:00
compression results in different lengths (overall better) but I doubt it will impact loading
11 lines
224 B
C#
11 lines
224 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace pkNX.Containers
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public class RelativeExtent
|
|
{
|
|
public int RegionRODataOffset;
|
|
public int RegionSize;
|
|
}
|
|
} |