mirror of
https://github.com/zeldaret/botw
synced 2026-08-14 04:23:08 -04:00
13 lines
230 B
C++
13 lines
230 B
C++
#pragma once
|
|
|
|
#include <Havok/Common/Base/Math/Vector/hkVector4f.h>
|
|
|
|
class hkMatrix3f {
|
|
public:
|
|
hkMatrix3f() {} // NOLINT(modernize-use-equals-default)
|
|
|
|
hkVector4f m_col0;
|
|
hkVector4f m_col1;
|
|
hkVector4f m_col2;
|
|
};
|