Really cool game

This commit is contained in:
Eric Ratliff
2025-06-25 22:14:38 -05:00
commit 694cc903c8
7 changed files with 425 additions and 0 deletions

15
index.html Normal file
View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>Asteroids Game</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.2/p5.min.js"></script>
<script src="ship.js"></script>
<script src="asteroid.js"></script>
<script src="bullet.js"></script>
<script src="shieldOrb.js"></script>
<script src="greenOrb.js"></script>
<script src="sketch.js"></script>
</head>
<body>
</body>
</html>