F4MP/tiltedcode/Code/client/Games/Skyrim/Forms/TESObjectARMO.h
Jous99 37b16f1547 code upload
codigo original de f4mp y tilted para referencias
2026-01-06 18:45:00 +01:00

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;
};