Game constructor

Game()

Creates a new game.

Implementation

Game() {
  _gameLoop = GameLoop(update);
  _gameLoop.start();
  _size = MediaQueryData.fromWindow(window).size;
}