Comitting progress

This commit is contained in:
2022-01-06 16:14:56 -08:00
parent 2bd125b170
commit fd710c9709
10 changed files with 151 additions and 83 deletions

View File

@ -7,6 +7,7 @@
#include "game.h"
bool gameInit(game_t *game) {
ASSERT_NOT_NULL(game);

View File

@ -17,11 +17,13 @@
typedef struct {
engine_t engine;
camera_t camera;
standardshader_t shader;
primitive_t quad;
assetmanagerholder_t owner;
assetmanageritem_t *item;
scenemana
} game_t;
/**