mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 20:50:54 +01:00
14 lines
278 B
C
14 lines
278 B
C
#pragma once
|
|
|
|
#include <Forms/TESForm.h>
|
|
|
|
struct TESObjectARMO : TESForm
|
|
{
|
|
[[nodiscard]] bool IsBodyPiece() const noexcept
|
|
{
|
|
return (slotType & 0x4) != 0; // 0x4 is flag for body piece
|
|
}
|
|
|
|
uint8_t unk20[0x1B8 - sizeof(TESForm)];
|
|
uint32_t slotType;
|
|
};
|