summary refs log tree commit diff stats
path: root/src/main.cpp
blob: ddbc15f708ed498be24911c64ebf4e06e3720671 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "muxer.h"
#include "game.h"

int main()
{
  initMuxer();

  Game game;
  game.execute();

  destroyMuxer();

  return 0;
}