Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/RE/C/CHAR_NORM.h
T
2026-05-30 18:33:24 +12:00

15 lines
172 B
C++

#pragma once
namespace RE
{
struct CHAR_NORM
{
public:
// members
char x; // 00
char y; // 01
char z; // 02
};
static_assert(sizeof(CHAR_NORM) == 0x03);
}