FFL
Loading...
Searching...
No Matches
FFLBoundingBox.h
Go to the documentation of this file.
1#ifndef FFL_BOUNDING_BOX_H_
2#define FFL_BOUNDING_BOX_H_
3
4#include <nn/ffl/FFLVec.h>
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10typedef struct FFLBoundingBox
11{
12 FFLVec3 min;
13 FFLVec3 max;
14}
15FFLBoundingBox;
16NN_STATIC_ASSERT(sizeof(FFLBoundingBox) == 0x18);
17
18#ifdef __cplusplus
19}
20#endif
21
22#endif // FFL_BOUNDING_BOX_H_
NN_STATIC_ASSERT(sizeof(FFLiAllocator)==4)
Definition FFLBoundingBox.h:11
FFLVec3 min
Definition FFLBoundingBox.h:12
FFLVec3 max
Definition FFLBoundingBox.h:13