Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/RE/D/DialogueResponse.h
T
2026-05-30 18:33:24 +12:00

28 lines
748 B
C++

#pragma once
#include "RE/B/BSFixedString.h"
namespace RE
{
class BGSKeyword;
class BGSSoundDescriptorForm;
class TESIdleForm;
class DialogueResponse
{
public:
// members
BSFixedStringCS text; // 00
BGSKeyword* animFaceArchType; // 08
std::uint16_t percent; // 10
BSFixedString voice; // 18
TESIdleForm* speakerIdle; // 20
TESIdleForm* listenIdle; // 28
BGSSoundDescriptorForm* voiceSound; // 30
bool useEmotion; // 38
bool soundLip; // 39
bool endOnSceneEnd; // 3A
};
static_assert(sizeof(DialogueResponse) == 0x40);
}