the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 11 lines 311 B view raw
1#pragma once 2#include <vectormath/cpp/vectormath_aos.h> 3using namespace Vectormath::Aos; 4 5typedef Vector4 XMVECTOR; 6typedef Matrix4 XMMATRIX; 7typedef Vector4 XMFLOAT4; 8 9XMMATRIX XMMatrixMultiply(XMMATRIX a, XMMATRIX b); 10XMVECTOR XMMatrixDeterminant(XMMATRIX a); 11XMMATRIX XMMatrixInverse(Vector4 *a, XMMATRIX b);