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,20 @@
#pragma once
namespace RE
{
class hkStopwatch
{
public:
hkStopwatch() = default;
// members
std::int64_t m_ticksAtStart{ 0 }; // 0x00
std::int64_t m_ticksTotal{ 0 }; // 0x08
std::int64_t m_ticksAtSplit{ 0 }; // 0x10
std::int64_t m_splitTotal{ 0 }; // 0x18
hkBool m_runningFlag{ false }; // 0x20
std::int32_t m_numTimings{ 0 }; // 0x24
const char* m_name{ nullptr }; // 0x28
};
static_assert(sizeof(hkStopwatch) == 0x30);
}