Initial commit

This commit is contained in:
Pocakking
2019-03-21 20:18:31 +01:00
commit d65c694d22
100 changed files with 95579 additions and 0 deletions

22
src/gta/matrix.hpp Normal file
View File

@ -0,0 +1,22 @@
#pragma once
#include "vector.hpp"
namespace rage
{
class matrix4x4
{
public:
union
{
struct
{
vector4 _1;
vector4 _2;
vector4 _3;
vector4 _4;
};
float raw[4 * 4] = {};
};
};
}