refactoring
This commit is contained in:
parent
fbd0ba445a
commit
18d8721dd5
68 changed files with 2187 additions and 36 deletions
13
src/Roboto.GameOffsets/Components/Shrine.cs
Normal file
13
src/Roboto.GameOffsets/Components/Shrine.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Roboto.GameOffsets.Components;
|
||||
|
||||
/// <summary>Shrine component.</summary>
|
||||
[StructLayout(LayoutKind.Explicit, Size = 0x28)]
|
||||
public struct Shrine
|
||||
{
|
||||
[FieldOffset(0x00)] public ComponentHeader Header;
|
||||
|
||||
/// <summary>Whether the shrine has been used (byte bool).</summary>
|
||||
[FieldOffset(0x24)] public byte IsUsed;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue