14 lines
172 B
C++
14 lines
172 B
C++
#pragma once
|
|
|
|
namespace RE
|
|
{
|
|
class NiPlane
|
|
{
|
|
public:
|
|
// members
|
|
NiPoint3 normal; // 00
|
|
float constant; // 0C
|
|
};
|
|
static_assert(sizeof(NiPlane) == 0x10);
|
|
}
|