9 lines
195 B
JavaScript
Raw Normal View History

2024-01-12 19:13:13 -07: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";