CommonLibVR
ISavePatcherInterface.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace RE
4 {
5  namespace BSScript
6  {
7  class IVirtualMachine;
8  class StackFrame;
9 
11  {
12  public:
13  inline static constexpr auto RTTI = RTTI_BSScript__ISavePatcherInterface;
14  inline static constexpr auto VTABLE = VTABLE_BSScript__ISavePatcherInterface;
15 
16  virtual ~ISavePatcherInterface(); // 00
17 
18  // add
19  virtual void PatchStackFrame(StackFrame* a_stackFrame, IVirtualMachine* a_vm) = 0; // 01
20  };
21  static_assert(sizeof(ISavePatcherInterface) == 0x8);
22  }
23 }
Definition: ISavePatcherInterface.h:11
static constexpr auto VTABLE
Definition: ISavePatcherInterface.h:14
static constexpr auto RTTI
Definition: ISavePatcherInterface.h:13
virtual void PatchStackFrame(StackFrame *a_stackFrame, IVirtualMachine *a_vm)=0
Definition: IVirtualMachine.h:39
Definition: StackFrame.h:15
Definition: AbsorbEffect.h:6
constexpr std::array< REL::ID, 1 > VTABLE_BSScript__ISavePatcherInterface
Definition: Offsets_VTABLE.h:9457
constexpr REL::ID RTTI_BSScript__ISavePatcherInterface(static_cast< std::uint64_t >(689043))