Game for OLC Code Jam 2022
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

index.html 554B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>OLC Codejam 2022</title>
  5. <link rel="stylesheet" href="css/style.css">
  6. <meta charset="utf-8">
  7. </head>
  8. <body>
  9. <div id="root">
  10. <section id="lives"></section>
  11. </div>
  12. <script src="js/utils.js"></script>
  13. <script src="js/entity.js"></script>
  14. <script src="js/bullet.js"></script>
  15. <script src="js/shooting_pad.js"></script>
  16. <script src="js/cloud.js"></script>
  17. <script src="js/game.js"></script>
  18. </body>
  19. </html>