Files
kakamora-game/index.html
2026-05-07 17:46:16 +09:00

17 lines
578 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Kakamora Game</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.9.0/p5.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/p5play@3/p5play.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/matter-js/0.19.0/matter.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<script src="src/Player.js"></script>
<script src="sketch.js"></script>
</body>
</html>