Trannoi

C Shell Git

Trannoi

Trannoi

The Story

A group of astronauts is traveling aboard the spaceship Skelt, and their goal is to complete all the scheduled tasks (the quests) required to keep the ship running, so they can reach their destination safely.

However, hidden among them are impostors, whose objective is to secretly eliminate the crew members without being discovered.

Will the astronauts manage to complete their mission before being wiped out?

Trannoi is loosely inspired by an existing game.

Compilation Instructions

Clone the repository available on GitHub and compile both files: main.c and gamelib.c separately using the following commands:

gcc -c main.c      # generates main.o
gcc -c gamelib.c   # generates gamelib.o

Now Link the object files to create the final executable:

gcc -o trannoi main.o gamelib.o

After compilation, you can run the program with:

./trannoi

Now just enjoy your mission!