docs: add plugin setup guide
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#pragma once
|
||||
|
||||
namespace RE
|
||||
{
|
||||
class IPipboyThrottledValue
|
||||
{
|
||||
public:
|
||||
static constexpr auto RTTI{ RTTI::IPipboyThrottledValue };
|
||||
static constexpr auto VTABLE{ VTABLE::IPipboyThrottledValue };
|
||||
|
||||
// members
|
||||
virtual ~IPipboyThrottledValue(); // 00
|
||||
|
||||
// add
|
||||
void* Update(); // 01
|
||||
};
|
||||
static_assert(sizeof(IPipboyThrottledValue) == 0x8);
|
||||
}
|
||||
Reference in New Issue
Block a user