This commit is contained in:
2025-10-01 17:59:41 -05:00
parent a734ecaa10
commit 83243ba32f
10 changed files with 149 additions and 8 deletions

View File

@@ -6,19 +6,22 @@
*/
#include "game/game.h"
#include "game/minesweeper/ui/ui.h"
errorret_t gameInit(void) {
uiInit();
errorOk();
}
void gameUpdate(void) {
}
void gameRender(void) {
uiRender();
}
void gameDispose(void) {
uiDispose();
}