Game for OLC Code Jam 2022
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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>