Added the Grid, Camera, Level system

Basic player
Started (Barely) on the TextureManager
And other fixes
This commit is contained in:
Bram Verhulst
2024-03-11 03:29:44 +01:00
parent f7c2262e10
commit d6bb3add26
35 changed files with 991 additions and 62 deletions

16
Engine/colors.h Normal file
View File

@@ -0,0 +1,16 @@

#include "structs.h"
namespace Colors
{
const Color4f WHITE{ 1.0f, 1.0f, 1.0f, 1.0f };
const Color4f BLACK{ 0.0f, 0.0f, 0.0f, 1.0f };
const Color4f RED{ 1.0f, 0.0f, 0.0f, 1.0f };
const Color4f GREEN{ 0.0f, 1.0f, 0.0f, 1.0f };
const Color4f BLUE{ 0.0f, 0.0f, 1.0f, 1.0f };
const Color4f YELLOW{ 1.0f, 1.0f, 0.0f, 1.0f };
const Color4f MAGENTA{ 1.0f, 0.0f, 1.0f, 1.0f };
const Color4f CYAN{ 0.0f, 1.0f, 1.0f, 1.0f };
}