aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
blob: e2e5e67465dcc07321d3324a7a9c270cc6a39d75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "gameCommon.h"
#include "game.h"
#include <raylib.h>

int main(int argc, char** argv)
{
    Game game;
    initGame(&game);

    while (!WindowShouldClose())
    {
        updateGame(&game);
    }

    closeGame(&game);
    return 0;
}