mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-21 21:59:47 +00:00
* Initial STFS support * Fix build errors * Fix more build errors * Final fix * Cleanup printer * Fix indent
17 lines
465 B
C#
17 lines
465 B
C#
using System.Collections.Generic;
|
|
|
|
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];
|
|
}
|
|
}
|