mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-23 21:16:18 -05:00
File scoped namespaces for all lib projects netstandard2.0 => net6; now uniform. bye netframework!
12 lines
225 B
C#
12 lines
225 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace pkNX.Containers;
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public class SegmentHeader
|
|
{
|
|
public int FileOffset;
|
|
public int MemoryOffset;
|
|
public int DecompressedSize;
|
|
}
|