simponic.xyz/maize-maze/js/assets.js

9 lines
195 B
JavaScript
Raw Normal View History

2024-01-12 21:13:13 -05:00
const GOAL = new Image();
GOAL.src = "./images/fire.png";
const PLAYER = new Image();
PLAYER.src = "./images/corn.png";
const BACKGROUND = new Image();
BACKGROUND.src = "./images/popcorn.jpg";