15 lines
182 B
C++
15 lines
182 B
C++
#pragma once
|
|
|
|
#include "RE/N/NiPoint2.h"
|
|
|
|
namespace RE
|
|
{
|
|
class TESRegionPoint
|
|
{
|
|
public:
|
|
// members
|
|
NiPoint2 point; // 00
|
|
};
|
|
static_assert(sizeof(TESRegionPoint) == 0x8);
|
|
}
|