16 lines
235 B
C++
16 lines
235 B
C++
#pragma once
|
|
|
|
#include "RE/B/BSFixedString.h"
|
|
|
|
namespace RE
|
|
{
|
|
class TESTrackedStatsEvent
|
|
{
|
|
public:
|
|
// members
|
|
BSFixedString stat; // 00
|
|
std::int32_t value; // 08
|
|
};
|
|
static_assert(sizeof(TESTrackedStatsEvent) == 0x10);
|
|
}
|