docs: add plugin setup guide
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
#pragma once
|
||||
|
||||
#include "RE/B/BGSLocalizedString.h"
|
||||
|
||||
namespace RE
|
||||
{
|
||||
class TESQuest;
|
||||
class TESQuestTarget;
|
||||
|
||||
class BGSQuestObjective
|
||||
{
|
||||
public:
|
||||
// members
|
||||
BGSLocalizedString displayText; // 00
|
||||
TESQuest* ownerQuest; // 08
|
||||
TESQuestTarget** targets; // 10
|
||||
std::uint32_t numTargets; // 18
|
||||
std::uint16_t index; // 1C
|
||||
bool initialized; // 1E
|
||||
char state; // 1F
|
||||
std::uint32_t flags; // 20
|
||||
};
|
||||
static_assert(sizeof(BGSQuestObjective) == 0x28);
|
||||
}
|
||||
Reference in New Issue
Block a user