docs: add plugin setup guide
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#pragma once
|
||||
|
||||
#include "RE/T/TESBoundObject.h"
|
||||
|
||||
namespace RE
|
||||
{
|
||||
class __declspec(novtable) BGSAcousticSpace :
|
||||
public TESBoundObject // 00
|
||||
{
|
||||
public:
|
||||
static constexpr auto RTTI{ RTTI::BGSAcousticSpace };
|
||||
static constexpr auto VTABLE{ VTABLE::BGSAcousticSpace };
|
||||
static constexpr auto FORM_ID{ ENUM_FORM_ID::kASPC };
|
||||
|
||||
// members
|
||||
BGSSoundDescriptorForm* loopingSound; // 68
|
||||
TESRegion* soundRegion; // 70
|
||||
BGSReverbParameters* reverbType; // 78
|
||||
std::uint16_t weatherAttenMillibels; // 80
|
||||
bool isInterior; // 82
|
||||
};
|
||||
static_assert(sizeof(BGSAcousticSpace) == 0x88);
|
||||
}
|
||||
Reference in New Issue
Block a user