mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-21 13:49:42 +00:00
15 lines
429 B
C#
15 lines
429 B
C#
namespace SabreTools.Data.Models.STFS
|
|
{
|
|
/// <summary>
|
|
/// STFS Hash Table in a Hash Table Block
|
|
/// </summary>
|
|
/// <see href="https://free60.org/System-Software/Formats/STFS/"/>
|
|
public class HashTable
|
|
{
|
|
/// <summary>
|
|
/// 170 hash table entries in a single table/block
|
|
/// </summary>
|
|
public HashTableEntry[] HashTableEntries { get; set; } = new HashTableEntry[170];
|
|
}
|
|
}
|