mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 03:40:54 +01:00
13 lines
212 B
C
13 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);
|