Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/RE/B/BSNavmeshClosedDoorInfo.h
T
2026-05-30 18:33:24 +12:00

18 lines
316 B
C++

#pragma once
#include "RE/B/BSTSmartPointer.h"
namespace RE
{
class BSPathingDoor;
class BSNavmeshClosedDoorInfo
{
public:
// members
BSTSmartPointer<BSPathingDoor> door; // 00
std::uint16_t iriangleIndex; // 08
};
static_assert(sizeof(BSNavmeshClosedDoorInfo) == 0x10);
}