refactoring
This commit is contained in:
parent
fbd0ba445a
commit
18d8721dd5
68 changed files with 2187 additions and 36 deletions
11
src/Roboto.GameOffsets/Natives/StdBucket.cs
Normal file
11
src/Roboto.GameOffsets/Natives/StdBucket.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Roboto.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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue