mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-27 07:08:19 -05:00
14 lines
337 B
C#
14 lines
337 B
C#
using System.IO;
|
|
|
|
namespace pkNX.Containers
|
|
{
|
|
internal class FATOEntry
|
|
{
|
|
public uint Offset { get; set; }
|
|
|
|
internal FATOEntry(uint offset = 0) => Offset = offset;
|
|
internal FATOEntry(BinaryReader br) => Offset = br.ReadUInt32();
|
|
|
|
internal void Write(BinaryWriter bw) => bw.Write(Offset);
|
|
}
|
|
} |