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