mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 21:50:53 +01:00
15 lines
278 B
C
15 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;
|
||
|
|
};
|