botw/lib/hkStubs/Havok/Common/Base/Math/Vector/hkSimdFloat32.h

16 lines
419 B
C++

#pragma once
#include <Havok/Common/Base/Types/hkBaseTypes.h>
using hkSimdFloat32Parameter = class hkSimdFloat32;
class hkSimdFloat32 {
public:
hkSimdFloat32() = default;
hkSimdFloat32(float x) : m_real(x) {} // NOLINT(google-explicit-constructor)
operator float() const { return val(); } // NOLINT(google-explicit-constructor)
hkFloat32 val() const { return m_real; }
hkFloat32 m_real;
};