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.
12345678910111213141516171819202122 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>OLC Codejam 2022</title>
- <link rel="stylesheet" href="css/style.css">
- <meta charset="utf-8">
- </head>
- <body>
- <canvas id="canvas" width="1280" height="720"></canvas>
- <div id="root">
- <section id="lives"></section>
- <section id="sound"></section>
- </div>
- <script src="https://cdn.jsdelivr.net/gh/josephg/noisejs/perlin.js"></script>
- <script src="js/utils.js"></script>
- <script src="js/entity.js"></script>
- <script src="js/bullet.js"></script>
- <script src="js/shooting_pad.js"></script>
- <script src="js/cloud.js"></script>
- <script src="js/game.js"></script>
- </body>
- </html>
|