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