wip refactoring file structure
This commit is contained in:
16
games/minesweeper/minesweeper.c
Normal file
16
games/minesweeper/minesweeper.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* Created by snapshot112 on 15/10/2025
|
||||
*/
|
||||
|
||||
#include "minesweeper.h"
|
||||
|
||||
#include <ncurses.h>
|
||||
|
||||
#include "../../engine/grid_game_engine.h"
|
||||
|
||||
void minesweeper() {
|
||||
clear();
|
||||
mvprintw(0,0, "Minesweeper has not yet been created");
|
||||
graceful_exit((coordinate){0, 3});
|
||||
refresh();
|
||||
}
|
||||
Reference in New Issue
Block a user