Created
February 4, 2014 18:27
-
-
Save GuilleUCM/8809417 to your computer and use it in GitHub Desktop.
html:quintus
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<script src='lib/quintus.js'></script> | |
<script src='lib/quintus_sprites.js'></script> | |
<script src='lib/quintus_scenes.js'></script> | |
<script src='lib/quintus_input.js'></script> | |
<script src='lib/quintus_anim.js'></script> | |
<script src='lib/quintus_2d.js'></script> | |
<script src='lib/quintus_touch.js'></script> | |
<script src='lib/quintus_ui.js'></script> | |
</head> | |
<body style="background-color: black;"> | |
<script> | |
var Q = Quintus() | |
.include("Sprites, Scenes, Input, 2D, Touch, UI") | |
.setup({ | |
width: 960, | |
height: 640 | |
}).controls().touch(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment