Tilemap loading, player sprite, collisions

This commit is contained in:
2014-06-09 22:48:39 -07:00
parent 62e7e60883
commit 60961221fe
17 changed files with 244 additions and 0 deletions

16
moonlight/index.html Normal file
View File

@@ -0,0 +1,16 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Phaser - Making your first game, part 1</title>
<script type="text/javascript" src="js/phaser.min.js"></script>
<style type="text/css">
body {
margin: 0;
}
</style>
</head>
<body>
<script type="text/javascript" src="js/moonlight-skulk.js"></script>
</body>
</html>