pixigame/index.html

28 lines
472 B
HTML

<!doctype html>
<head>
<meta charset="utf-8" />
<title>Hello World</title>
<style>
#error-log {
border: 1px solid #000;
height: 5em;
overflow:auto;
}
#error-log div {
font-size: small;
}
</style>
</head>
<body>
<script src="pixi.min.js"></script>
<script src="debuglog.js"></script>
<script src="tutorial1.js"></script>
<script>
//Test that Pixi is working
console.log(PIXI);
console.log("brep");
</script>
</body>
</html>