mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 02:20:53 +01:00
10 lines
196 B
C
10 lines
196 B
C
#pragma once
|
|
|
|
#include "ExtraData.h"
|
|
|
|
struct ExtraWornLeft : BSExtraData
|
|
{
|
|
inline static constexpr auto eExtraData = ExtraDataType::WornLeft;
|
|
};
|
|
|
|
static_assert(sizeof(ExtraWornLeft) == 0x10);
|