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

27 lines
701 B
C++

#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);
}