14 lines
193 B
C++
14 lines
193 B
C++
#pragma once
|
|
|
|
#include "RE/B/BSTEvent.h"
|
|
|
|
namespace RE
|
|
{
|
|
class IsPipboyActiveEvent :
|
|
public BSTValueEvent<bool> // 00
|
|
{
|
|
public:
|
|
};
|
|
static_assert(sizeof(IsPipboyActiveEvent) == 0x02);
|
|
}
|