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.

main.js 212B

123456789
  1. import Level from './Level';
  2. import Player from './entities/Player';
  3. import Vec2 from './Vec2';
  4. let level = new Level(document.getElementById("canvas"));
  5. level.spawn(new Player(level), 20, 20);
  6. level.start();