ad-astra/ad_astra/AdAstra/src/main.c
schmelczerandras 26a0fd884f Copy project
2020-04-19 12:48:06 +02:00

14 lines
320 B
C

#include "mediator/mediator.h"
// Stemming from the module oriented nature of the project
// there is a module responsible for setting up and orchestrating
// the other modules.
//
// From the main function we only have to instruct the mediator to
// do its job.
int main(void) {
setupConnections();
startGame();
}