25 lines
695 B
C++
25 lines
695 B
C++
#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);
|
|
}
|