Added some array utils.

This commit is contained in:
2021-06-13 18:16:35 -07:00
parent 928c3c838e
commit 77389ffd15
16 changed files with 242 additions and 45 deletions

View File

@ -13,7 +13,7 @@ bool gameInit(game_t *game) {
// Init the engine and the rendering pipeline
engineInit(&game->engine, game);
// Hand off to the poker logic.
pokerInit(&game->poker, &game->engine);

View File

@ -8,6 +8,9 @@
#include "../engine/engine.h"
#include "../poker/poker.h"
#include "../poker/card.h"
#include "../util/array.h"
#include "../display/camera.h"
#include "../display/shader.h"
#include "../display/gui/font.h"