mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-14 00:20:54 +01:00
19 lines
256 B
C
19 lines
256 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <Forms/TESObject.h>
|
||
|
|
|
||
|
|
struct TESBoundObject : TESObject
|
||
|
|
{
|
||
|
|
struct Bound
|
||
|
|
{
|
||
|
|
uint16_t x;
|
||
|
|
uint16_t y;
|
||
|
|
uint16_t z;
|
||
|
|
};
|
||
|
|
|
||
|
|
Bound upper;
|
||
|
|
Bound lower;
|
||
|
|
};
|
||
|
|
|
||
|
|
static_assert(sizeof(TESBoundObject) == 0x30);
|