19 lines
709 B
C#
19 lines
709 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Roboto.GameOffsets.Components;
|
|
|
|
/// <summary>Targetable component — whether entity can be targeted/highlighted.</summary>
|
|
[StructLayout(LayoutKind.Explicit, Pack = 1, Size = 0x58)]
|
|
public struct Targetable
|
|
{
|
|
[FieldOffset(0x00)] public ComponentHeader Header;
|
|
|
|
/// <summary>Whether the entity is targetable (byte bool).</summary>
|
|
[FieldOffset(0x49)] public byte IsTargetable;
|
|
|
|
/// <summary>Whether the entity is highlightable (byte bool).</summary>
|
|
[FieldOffset(0x4A)] public byte IsHighlightable;
|
|
|
|
/// <summary>Whether the entity is targeted by player (byte bool).</summary>
|
|
[FieldOffset(0x4B)] public byte IsTargettedByPlayer;
|
|
}
|