From 23deb8c77fabbc290a68648aff2f66881caf5e84 Mon Sep 17 00:00:00 2001 From: KRUGSON Date: Sun, 5 Feb 2023 03:09:33 +0100 Subject: [PATCH] initial commit --- build-project.sh | 0 src/c/main.c | 27 +++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) mode change 100644 => 100755 build-project.sh create mode 100644 src/c/main.c diff --git a/build-project.sh b/build-project.sh old mode 100644 new mode 100755 diff --git a/src/c/main.c b/src/c/main.c new file mode 100644 index 0000000..9448ed1 --- /dev/null +++ b/src/c/main.c @@ -0,0 +1,27 @@ +//BIBs +#include +#include +#include + +bool gameRunning; + +int main() +{ + //define variables + char userInput[20]; //maximum defined user input length + gameRunning = 1; + + while (gameRunning == 1) //while running + { + // User Input + printf("User Input:"); + scanf(" %s", userInput); + printf("\n"); + + //NEXT STEP: + //Processing + //processInput(userInput); + } + + return 0; +}; \ No newline at end of file