boxes/js/main.mjs

16 lines
320 B
JavaScript
Raw Normal View History

2023-06-23 09:00:12 +00:00
import * as graphics from "./graphics.mjs";
import { BOX_SIZE, get_tile } from "./world.mjs";
import { get_player_box } from "./player.mjs";
2023-06-23 09:00:12 +00:00
function render (timestamp) {
graphics.clear();
graphics.draw_world(get_player_box());
graphics.render();
2023-06-23 09:00:12 +00:00
requestAnimationFrame(render);
2023-06-23 09:00:12 +00:00
}
requestAnimationFrame(render);