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 747B

12345678910111213141516171819202122
  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. <canvas id="canvas" width="1280" height="720"></canvas>
  10. <div id="root">
  11. <section id="lives"></section>
  12. <section id="sound"></section>
  13. </div>
  14. <script src="https://cdn.jsdelivr.net/gh/josephg/noisejs/perlin.js"></script>
  15. <script src="js/utils.js"></script>
  16. <script src="js/entity.js"></script>
  17. <script src="js/bullet.js"></script>
  18. <script src="js/shooting_pad.js"></script>
  19. <script src="js/cloud.js"></script>
  20. <script src="js/game.js"></script>
  21. </body>
  22. </html>