From f8e634ac1ba03a61866add5a728158d812991762 Mon Sep 17 00:00:00 2001 From: fdai7225 Date: Sat, 4 Feb 2023 18:14:25 +0100 Subject: [PATCH] refactoring: ASCI --- src/Umgebung.c | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/src/Umgebung.c b/src/Umgebung.c index eb5ea0b..3402d30 100644 --- a/src/Umgebung.c +++ b/src/Umgebung.c @@ -6,13 +6,9 @@ #include #include #include +//#include "Umgebung.h" -// Bellow you can find the function ASCI with which we designed the box and snake and food -/*int main(){ - int a = 0; - while( a<= 255) - printf("%d = %c\n", a , a); - a++;} */ +void ASCI();//Bellow you can find the function ASCI with which we designed the box and snake and food int score = 0; void Anweisung(char s[N]); void RealU(int realU1[N][N]); @@ -47,6 +43,8 @@ int main(){ re 0; } + + void Anweisung(char s[N]){ printf("\t\033[96m Herzlichen Willkommen zum Spiel: SNAKE \033[0m\n"); printf("\t\033[96m Geben Sie Ihr Name ein bitte: \033[0m\n"); @@ -103,6 +101,7 @@ void Umgebung(int str[N][N]){ system("clear");// wegen der Refrech unsere Seite printf("\n"); + printf("\n"); printf("\033[96m%c\033[0m", 218); for (int i = 0; i < N * 2 + 2; i++)printf("\033[96m%c\033[0m", 95); @@ -127,7 +126,6 @@ void Umgebung(int str[N][N]){ printf("\n"); Score(score); } - void Apfel(int realU[N][N]){ int ii,jj; while (true) @@ -139,6 +137,7 @@ void Apfel(int realU[N][N]){ re; } } +<<<<<<< HEAD } int win(int realU[N][N]){ @@ -202,4 +201,12 @@ int lose(int realU[N][N], char richtung){ return 0; -} \ No newline at end of file +} +======= +} +void ASCI(){ + int a = 0; + while( a<= 255) + printf("%d = %c\n", a , a); + a++;} +>>>>>>> d029413 (refactoring: ASCI)