initial commit

This commit is contained in:
KingOfDog
2019-06-11 18:46:14 +02:00
committed by KingOfDog
commit 35bc54eaac
13 changed files with 875 additions and 0 deletions

28
index.html Normal file
View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pacman</title>
<style>
body {
margin: 0;
}
.pacman-game {
background: black;
}
</style>
</head>
<body>
<script src="helper-methods.js"></script>
<script src="DOM.js"></script>
<script src="GameObject.js"></script>
<script src="MovingObject.js"></script>
<script src="Ghost.js"></script>
<script src="Player.js"></script>
<script src="MapTile.js"></script>
<script src="GameMap.js"></script>
<script src="MapLoader.js"></script>
<script src="Game.js"></script>
<script src="main.js"></script>
</body>
</html>