Did a lot of work on the engine

This commit is contained in:
2021-05-16 11:22:45 -07:00
parent 80f9cc4328
commit e958f509ab
46 changed files with 960 additions and 362 deletions

View File

@ -13,7 +13,10 @@ bool gameInit() {
// Init the game
GAME_STATE.name = GAME_NAME;
// Init the renderer.
logInit();
logText("Starting Game");
// Init
gameTimeInit();
renderInit();
inputInit();

View File

@ -12,11 +12,7 @@
#include "../file/asset.h"
#include "../input/input.h"
#include "../card/poker/holdemgame.h"
#include "../display/primitive.h"
#include "../display/primitives/cube.h"
#include "../display/texture.h"
#include "../util/math.h"
#include "../debug/log.h"
/**
* Initialize the game context.

View File

@ -7,7 +7,6 @@
#pragma once
#include <dawn/dawn.h>
#include "../util/math.h"
/**
* Initializes the gametime global time tracking.