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

int main()
{
  srand(time(NULL));
  
  Game::getInstance().execute();
  
  return 0;
}