mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
13 lines
316 B
C#
13 lines
316 B
C#
namespace Cosmos.Core
|
|
{
|
|
// The DataLookupTable (DLT) basically is a linked list.
|
|
internal unsafe struct DataLookupTable
|
|
{
|
|
public const int EntriesPerTable = 170;
|
|
|
|
public DataLookupTable* Previous;
|
|
public DataLookupTable* Next;
|
|
|
|
public DataLookupEntry* Entries;
|
|
}
|
|
}
|