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

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

  while (!WindowShouldClose())
  {
    updateGame(&game);
  }
  
  closeGame(&game);
  return 0;
}