From d5797d67685519b270651820dffa3603d6be76bb Mon Sep 17 00:00:00 2001 From: fdai7184 Date: Fri, 10 Feb 2023 22:46:54 +0100 Subject: [PATCH] refactoring:cleaning up input --- src/input.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/input.c b/src/input.c index 600ceb0..20612ec 100644 --- a/src/input.c +++ b/src/input.c @@ -8,15 +8,6 @@ int kbhit(void); char getch(void); void Pausieren(); - -/*int main(int argc, char ** argv){ - printf("wasd or arrows to control snake, q to quit, p to pause game."); - while(1){ - getInput(); - } -}*/ - - /** getInput gets the userinput and reacts to input of w,a,s,d, arrow keys, p or q * utilises getch() and kbhit, no parameters, no returns */