mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-09 05:35:26 +00:00
20 lines
580 B
C#
20 lines
580 B
C#
namespace BinaryObjectScanner.Models.Nitro
|
|
{
|
|
/// <summary>
|
|
/// The structure of the file allocation table is very simple,
|
|
/// it's just a table of 8 byte entries
|
|
/// </summary>
|
|
/// <see href="https://github.com/Deijin27/RanseiLink/wiki/NDS-File-System"/>
|
|
public sealed class FileAllocationTableEntry
|
|
{
|
|
/// <summary>
|
|
/// Start offset of file
|
|
/// </summary>
|
|
public uint StartOffset;
|
|
|
|
/// <summary>
|
|
/// End offset of file (after this is padding)
|
|
/// </summary>
|
|
public uint EndOffset;
|
|
}
|
|
} |