Browse Source

initial commit

remotes/origin/navigation
KRUGSON 2 years ago
parent
commit
23deb8c77f
  1. 0
      build-project.sh
  2. 27
      src/c/main.c

0
build-project.sh

27
src/c/main.c

@ -0,0 +1,27 @@
//BIBs
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
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;
};
Loading…
Cancel
Save