21 lines
512 B
C++
21 lines
512 B
C++
#pragma once
|
|
|
|
#include "RE/H/hkFlags.h"
|
|
#include "RE/H/hkcdRay.h"
|
|
#include "RE/H/hkcdRayQueryFlags.h"
|
|
#include "RE/H/hknpCollisionQuery.h"
|
|
|
|
namespace RE
|
|
{
|
|
class hknpRayCastQuery :
|
|
public hknpCollisionQuery
|
|
{
|
|
public:
|
|
// members
|
|
hkcdRay m_ray; // 0x20
|
|
hkFlags<hkcdRayQueryFlags::Enum, std::uint32_t> m_flags; // 0x50
|
|
std::byte m_pad54[0x0C]; // 0x54
|
|
};
|
|
static_assert(sizeof(hknpRayCastQuery) == 0x60);
|
|
}
|