16 lines
193 B
C++
16 lines
193 B
C++
#pragma once
|
|
|
|
#include "RE/H/hkVector4.h"
|
|
|
|
namespace RE
|
|
{
|
|
class hkAabb
|
|
{
|
|
public:
|
|
// members
|
|
hkVector4f min; // 00
|
|
hkVector4f max; // 10
|
|
};
|
|
static_assert(sizeof(hkAabb) == 0x20);
|
|
}
|