docs: add plugin setup guide

This commit is contained in:
2026-05-30 18:33:24 +12:00
parent f3db41c402
commit b61043a3fe
1776 changed files with 122386 additions and 2 deletions
@@ -0,0 +1,26 @@
#pragma once
#include "RE/B/BSFixedString.h"
#include "RE/B/BSTOptional.h"
#include "RE/X/XPChangeData.h"
namespace RE
{
class BGSQuestObjective;
class MapMarkerData;
class TESQuest;
class HUDNotificationEvent
{
public:
// members
BSFixedString messageType; // 00
BSFixedStringCS messageTitle; // 08
TESQuest* quest; // 10
BGSQuestObjective* objective; // 18
const MapMarkerData* markerData; // 20
BSTOptional<XPChangeData> xpChange; // 28
bool suppressNotification; // 3C
};
static_assert(sizeof(HUDNotificationEvent) == 0x40);
}