mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:40:53 +01:00
12 lines
212 B
C
12 lines
212 B
C
#pragma once
|
|
|
|
#include "ExtraData.h"
|
|
|
|
struct ExtraHealth : BSExtraData
|
|
{
|
|
inline static constexpr auto eExtraData = ExtraDataType::Health;
|
|
|
|
float fHealth{};
|
|
};
|
|
|
|
static_assert(sizeof(ExtraHealth) == 0x18);
|