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,24 @@
#pragma once
#include "RE/B/BSIntrusiveRefCounted.h"
namespace RE::BSResource
{
class CacheDrive;
class __declspec(novtable) ICacheDriveOp :
public BSIntrusiveRefCounted
{
public:
virtual ~ICacheDriveOp() = default;
virtual void OnValid(CacheDrive& p_cache_drive) = 0;
virtual void OnInit(CacheDrive& p_cache_drive) = 0;
virtual void OnPacketWrite(CacheDrive& p_cache_drive, std::uint64_t a_v) = 0;
virtual void OnComplete(CacheDrive& p_cache_drive) = 0;
virtual void OnError(CacheDrive& p_cache_drive) = 0;
// members
std::uint32_t unk08; // 08
};
static_assert(sizeof(ICacheDriveOp) == 0x10);
}