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/hkStreamReader.h"
namespace RE
{
class __declspec(novtable) hkIArchive :
public hkReferencedObject
{
public:
inline static constexpr auto RTTI{ RTTI::hkIArchive };
inline static constexpr auto VTABLE{ VTABLE::hkIArchive };
bool IsOk() const
{
return m_reader->IsOk();
}
// members
hkRefPtr<hkStreamReader> m_reader; // 0x10
hkBool m_byteSwap; // 0x18
std::byte m_pad19[7]; // 0x19
};
static_assert(sizeof(hkIArchive) == 0x20);
}