pkNX/pkNX.Containers/NX/RelativeExtent.cs
Kurt 2578ba073c Refactoring
File scoped namespaces for all lib projects
netstandard2.0 => net6; now uniform. bye netframework!
2022-10-01 17:08:17 -07:00

11 lines
199 B
C#

using System.Runtime.InteropServices;
namespace pkNX.Containers;
[StructLayout(LayoutKind.Sequential)]
public class RelativeExtent
{
public int RegionRODataOffset;
public int RegionSize;
}