initial commit
This commit is contained in:
28
index.html
Normal file
28
index.html
Normal 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>
|
Reference in New Issue
Block a user