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

20 lines
339 B
C++

#pragma once
#include "RE/B/BSScript_Object.h"
#include "RE/B/BSTPointerAndFlags.h"
#include "RE/B/BSTSmartPointer.h"
namespace RE
{
namespace BSScript
{
namespace Internal
{
class AttachedScript :
public BSTPointerAndFlags<BSTSmartPointer<Object>, 1> // 00
{};
static_assert(sizeof(AttachedScript) == 0x8);
}
}
}