mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 22:50:54 +01:00
18 lines
369 B
C
18 lines
369 B
C
#pragma once
|
|
|
|
#include "ExtraData.h"
|
|
|
|
struct TESNPC;
|
|
|
|
struct ExtraLeveledCreature : BSExtraData
|
|
{
|
|
inline static constexpr auto eExtraData = ExtraDataType::LeveledCreature;
|
|
|
|
virtual ~ExtraLeveledCreature();
|
|
|
|
TESNPC* npc1;
|
|
TESNPC* npc2;
|
|
};
|
|
|
|
static_assert(sizeof(ExtraLeveledCreature) == 0x20);
|
|
static_assert(offsetof(ExtraLeveledCreature, npc1) == 0x10);
|