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 ExtraCharge : BSExtraData
|
|
{
|
|
inline static constexpr auto eExtraData = ExtraDataType::Charge;
|
|
|
|
float fCharge{};
|
|
};
|
|
|
|
static_assert(sizeof(ExtraCharge) == 0x18);
|