summaryrefslogtreecommitdiff
path: root/maize-maze/js/assets.js
blob: 54ea6bb07908fbd2ab9a3e9757f1054b0c0424ff (plain)
1
2
3
4
5
6
7
8
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";