Premake, Gitmodules, Readme

This commit is contained in:
Pocakking
2019-06-23 22:00:18 +02:00
parent 1ec1716c2e
commit 17fe337342
108 changed files with 303 additions and 68667 deletions

View File

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