summaryrefslogtreecommitdiff
path: root/src/main.c
blob: be8671d24e01e7c0101c652bb19e0a84171edfc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <init.h>
#include <game.h>
#include <stdlib.h>

int main(void)
{
    if (system_init() || game())
        return EXIT_FAILURE;

    return 0;
}