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

123456789101112131415161718192021
  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. </div>
  13. <script src="https://cdn.jsdelivr.net/gh/josephg/noisejs/perlin.js"></script>
  14. <script src="js/utils.js"></script>
  15. <script src="js/entity.js"></script>
  16. <script src="js/bullet.js"></script>
  17. <script src="js/shooting_pad.js"></script>
  18. <script src="js/cloud.js"></script>
  19. <script src="js/game.js"></script>
  20. </body>
  21. </html>