From 7d4a9b46b0df5a51d0f6e0a36e34021bf41382d9 Mon Sep 17 00:00:00 2001 From: fdai7729 Date: Fri, 9 Feb 2024 04:14:25 +0000 Subject: [PATCH] Update src/main/c/main.c --- src/main/c/main.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/c/main.c b/src/main/c/main.c index 6155d68..f501e07 100644 --- a/src/main/c/main.c +++ b/src/main/c/main.c @@ -8,6 +8,7 @@ #include "Minesweeper/minesweeper_start.h" #include "Pong/pong.h" #include "Hangman/playHangman.h" +#include "Battleship_game/battleship_game.h" int main(){ bool running = true; @@ -22,6 +23,7 @@ int main(){ printf("\t2.Pong starten\n"); printf("\t3.Snake starten\n"); printf("\t4.tic_tac_toe starten\n"); + printf("\t5.battleship starten\n") printf("\t7.Minesweeper starten\n"); printf("\t10.Exit\n"); @@ -41,6 +43,9 @@ int main(){ case 4: start_tictactoe(); break; + case 5: + start_battleship(); + break; case 7: minesweeper_start(); break;