From 17bdcd90a7a6adbeec70d0534e336a7d8e03e016 Mon Sep 17 00:00:00 2001 From: KaffeeMaus Date: Fri, 26 Jan 2024 11:06:08 +0100 Subject: [PATCH] added another command --- src/main/c/Georg/tictactoe.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/c/Georg/tictactoe.c b/src/main/c/Georg/tictactoe.c index 8501c52..de5401b 100644 --- a/src/main/c/Georg/tictactoe.c +++ b/src/main/c/Georg/tictactoe.c @@ -27,5 +27,7 @@ struct ticTacToe createTicTacToe() { int handeCommand( char* input ){ if( strcmp(input, "start game") == 0 ){ return 1; + }else if( strcmp(input, "start menu") == 0 ){ + return 0; } } \ No newline at end of file