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

int main()
{
  std::random_device randomDevice;
  std::mt19937 rng(randomDevice());

  initMuxer();

  Game game(rng);
  game.execute();

  destroyMuxer();

  return 0;
}