diff --git a/02-arkanoid-game/index.html b/02-arkanoid-game/index.html index 01ea8fb..008da5b 100644 --- a/02-arkanoid-game/index.html +++ b/02-arkanoid-game/index.html @@ -9,7 +9,7 @@ canvas { border: 4px solid #000; border-bottom: transparent; - background: url('./bkg.png') repeat; + background: url("./bkg.png") repeat; margin: 0 auto; display: block; box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4); @@ -21,39 +21,43 @@ - \ No newline at end of file + draw(); + initEvents(); + diff --git a/02-arkanoid-game/powerups.png b/02-arkanoid-game/powerups.png new file mode 100644 index 0000000..b7fca7c Binary files /dev/null and b/02-arkanoid-game/powerups.png differ