From ce3abf126bb6df783abe7790ec02ae98a3b74d02 Mon Sep 17 00:00:00 2001 From: Filip Znachor Date: Tue, 15 Nov 2022 11:25:42 +0100 Subject: [PATCH] Changed repository structure --- tic_tac_toe_random/tic_tac_toe_random.ino => random/random.ino | 0 .../tic_tac_toe_first_player.ino => uart/player1.ino | 2 +- .../tic_tac_toe_second_player.ino => uart/player2.ino | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename tic_tac_toe_random/tic_tac_toe_random.ino => random/random.ino (100%) rename tic_tac_toe_game/tic_tac_toe_first_player/tic_tac_toe_first_player.ino => uart/player1.ino (99%) rename tic_tac_toe_game/tic_tac_toe_second_player/tic_tac_toe_second_player.ino => uart/player2.ino (99%) diff --git a/tic_tac_toe_random/tic_tac_toe_random.ino b/random/random.ino similarity index 100% rename from tic_tac_toe_random/tic_tac_toe_random.ino rename to random/random.ino diff --git a/tic_tac_toe_game/tic_tac_toe_first_player/tic_tac_toe_first_player.ino b/uart/player1.ino similarity index 99% rename from tic_tac_toe_game/tic_tac_toe_first_player/tic_tac_toe_first_player.ino rename to uart/player1.ino index ec33a2f..4700406 100644 --- a/tic_tac_toe_game/tic_tac_toe_first_player/tic_tac_toe_first_player.ino +++ b/uart/player1.ino @@ -248,4 +248,4 @@ void loop() { } } } -} \ No newline at end of file +} diff --git a/tic_tac_toe_game/tic_tac_toe_second_player/tic_tac_toe_second_player.ino b/uart/player2.ino similarity index 99% rename from tic_tac_toe_game/tic_tac_toe_second_player/tic_tac_toe_second_player.ino rename to uart/player2.ino index 34ec4e4..17a83fa 100644 --- a/tic_tac_toe_game/tic_tac_toe_second_player/tic_tac_toe_second_player.ino +++ b/uart/player2.ino @@ -251,4 +251,4 @@ void loop() { } } } -} \ No newline at end of file +}