Game
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617
  1. window.ontouchmove = function(evt) {
  2. evt.preventDefault();
  3. }
  4. function run() {
  5. var game = new Game(document.getElementById("canvas"));
  6. game.canvas.width = window.innerWidth;
  7. game.canvas.height = window.innerHeight;
  8. var worldgen = new WorldGen(game);
  9. game.start(worldgen);
  10. game.onstop = run;
  11. }
  12. run();