Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/RE/H/hkRotation.h
T
2026-05-30 18:33:24 +12:00

17 lines
241 B
C++

#pragma once
#include "RE/H/hkMatrix3.h"
namespace RE
{
class hkRotationf :
public hkMatrix3f
{
public:
constexpr hkRotationf() noexcept = default;
using hkMatrix3f::hkMatrix3f;
};
static_assert(sizeof(hkRotationf) == 0x30);
}