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

24 lines
496 B
C++

#pragma once
namespace RE
{
namespace BSScript
{
class IVirtualMachine;
class StackFrame;
class ISavePatcherInterface
{
public:
static constexpr auto RTTI{ RTTI::BSScript__ISavePatcherInterface };
static constexpr auto VTABLE{ VTABLE::BSScript__ISavePatcherInterface };
virtual ~ISavePatcherInterface() = default; // 00
// add
virtual void PatchStackFrame(StackFrame&, IVirtualMachine&) = 0; // 01
};
static_assert(sizeof(ISavePatcherInterface) == 0x8);
}
}