11 lines
311 B
C#
11 lines
311 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Nexus.GameOffsets.Natives;
|
|
|
|
/// <summary>Bucket structure used in hash containers.</summary>
|
|
[StructLayout(LayoutKind.Explicit, Size = 0x20)]
|
|
public struct StdBucket
|
|
{
|
|
[FieldOffset(0x00)] public StdVector Data;
|
|
[FieldOffset(0x18)] public long Unknown;
|
|
}
|