forked from snapshot112/minigame-menu
Got the minigame menu up, running and documented. Also split up the game file
This commit is contained in:
16
minesweeper.c
Normal file
16
minesweeper.c
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user