Got the minigame menu up, running and documented. Also split up the game file

This commit is contained in:
2025-10-16 01:10:09 +02:00
parent 06e148a710
commit cfd4ccad64
15 changed files with 737 additions and 479 deletions

16
minesweeper.c Normal file
View File

@@ -0,0 +1,16 @@
//
// Created by snapshot112 on 10/15/25.
//
#include "minesweeper.h"
#include <ncurses.h>
#include "grid_game_engine.h"
void minesweeper() {
clear();
mvprintw(0,0, "Minesweeper has not yet been created");
graceful_exit();
refresh();
}