docs: add plugin setup guide
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
#pragma once
|
||||
|
||||
#include "RE/B/BSTempEffect.h"
|
||||
#include "RE/N/NiPointer.h"
|
||||
|
||||
namespace RE
|
||||
{
|
||||
class __declspec(novtable) BSTempEffectScreenSpaceDecal :
|
||||
public BSTempEffect // 00
|
||||
{
|
||||
public:
|
||||
static constexpr auto RTTI{ RTTI::__BSTempEffectScreenSpaceDecal };
|
||||
static constexpr auto VTABLE{ VTABLE::__BSTempEffectScreenSpaceDecal };
|
||||
static constexpr auto Ni_RTTI{ Ni_RTTI::BSTempEffectScreenSpaceDecal };
|
||||
static constexpr auto TYPE{ TEMP_EFFECT_TYPE::kDecal };
|
||||
|
||||
~BSTempEffectScreenSpaceDecal() override;
|
||||
|
||||
// members
|
||||
bool permanent; // 30
|
||||
NiPointer<void*> decal; // 38 - BSDeferredDecal::BSDFDecal
|
||||
};
|
||||
static_assert(sizeof(BSTempEffectScreenSpaceDecal) == 0x40);
|
||||
}
|
||||
Reference in New Issue
Block a user