24 lines
396 B
C++
24 lines
396 B
C++
#pragma once
|
|
|
|
namespace RE
|
|
{
|
|
namespace TESQuestEvent
|
|
{
|
|
enum Type : std::int32_t
|
|
{
|
|
kUpdateQuestActiveStatus = 0x0,
|
|
kUpdateQuestEnableStatus = 0x1,
|
|
kUpdateQuestStageChange = 0x2,
|
|
kUpdateMiscQuestVisibility = 0x3
|
|
};
|
|
|
|
class Event
|
|
{
|
|
public:
|
|
TESQuestEvent::Type changeType; // 00
|
|
TESQuest* quest; // 08
|
|
};
|
|
static_assert(sizeof(Event) == 0x10);
|
|
}
|
|
}
|