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

24 lines
539 B
C++

#pragma once
#include "RE/B/BSIMusicTrack.h"
#include "RE/T/TESForm.h"
namespace RE
{
class BGSMusicTrack;
class __declspec(novtable) BGSMusicTrackFormWrapper :
public TESForm, // 00
public BSIMusicTrack // 20
{
public:
static constexpr auto RTTI{ RTTI::BGSMusicTrackFormWrapper };
static constexpr auto VTABLE{ VTABLE::BGSMusicTrackFormWrapper };
static constexpr auto FORM_ID{ ENUM_FORM_ID::kMUST };
// members
BGSMusicTrack* trackImpl; // 30
};
static_assert(sizeof(BGSMusicTrackFormWrapper) == 0x38);
}