mirror of
https://github.com/zeldaret/botw
synced 2026-06-06 11:37:27 -04:00
10 lines
136 B
C++
10 lines
136 B
C++
#pragma once
|
|
|
|
class hkMatrix4f {
|
|
public:
|
|
hkVector4f m_col0;
|
|
hkVector4f m_col1;
|
|
hkVector4f m_col2;
|
|
hkVector4f m_col3;
|
|
};
|