14 lines
320 B
C
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();
|
|
}
|