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

16 lines
237 B
C++

#pragma once
#include "RE/B/BSFixedString.h"
namespace RE
{
class MenuOpenCloseEvent
{
public:
// members
BSFixedString menuName; // 00
bool opening; // 08
};
static_assert(sizeof(MenuOpenCloseEvent) == 0x10);
}