docs: add plugin setup guide
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
|
||||
#include "RE/B/BSExtraData.h"
|
||||
|
||||
namespace RE
|
||||
{
|
||||
class DoorTeleportData;
|
||||
|
||||
class __declspec(novtable) ExtraTeleport :
|
||||
public BSExtraData // 00
|
||||
{
|
||||
public:
|
||||
static constexpr auto RTTI{ RTTI::ExtraTeleport };
|
||||
static constexpr auto VTABLE{ VTABLE::ExtraTeleport };
|
||||
static constexpr auto TYPE{ EXTRA_DATA_TYPE::kTeleport };
|
||||
|
||||
// members
|
||||
DoorTeleportData* teleportData; // 18
|
||||
};
|
||||
static_assert(sizeof(ExtraTeleport) == 0x20);
|
||||
}
|
||||
Reference in New Issue
Block a user