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

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