15 lines
264 B
C++
15 lines
264 B
C++
#pragma once
|
|
|
|
#include "RE/B/BSTEvent.h"
|
|
#include "RE/Q/QuickContainerStateData.h"
|
|
|
|
namespace RE
|
|
{
|
|
class QuickContainerStateEvent :
|
|
public BSTValueEvent<QuickContainerStateData> // 00
|
|
{
|
|
public:
|
|
};
|
|
static_assert(sizeof(QuickContainerStateEvent) == 0xC0);
|
|
}
|