docs: add plugin setup guide

This commit is contained in:
2026-05-30 18:33:24 +12:00
parent f3db41c402
commit b61043a3fe
1776 changed files with 122386 additions and 2 deletions
@@ -0,0 +1,28 @@
#pragma once
#include "RE/H/hkBool.h"
#include "RE/H/hkRefPtr.h"
#include "RE/H/hkReferencedObject.h"
#include "RE/H/hkStreamWriter.h"
namespace RE
{
class __declspec(novtable) hkOArchive :
public hkReferencedObject
{
public:
inline static constexpr auto RTTI{ RTTI::hkOArchive };
inline static constexpr auto VTABLE{ VTABLE::hkOArchive };
bool IsOk() const
{
return m_writer->IsOk();
}
// members
hkRefPtr<hkStreamWriter> m_writer; // 0x10
hkBool m_byteSwap; // 0x18
std::byte m_pad19[7]; // 0x19
};
static_assert(sizeof(hkOArchive) == 0x20);
}