mirror of https://github.com/zeldaret/botw.git
16 lines
419 B
C++
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;
|
|
};
|