Files
pacman.js/index.html
2019-06-11 18:46:14 +02:00

28 lines
649 B
HTML

<!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>