-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
26 lines (26 loc) · 1.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Lost Astronaut's Pixitron Engine</title>
<script src="lib/howler.js" type="text/javascript"></script>
<script src="pixi.min.js" type="text/javascript"></script>
<script src="pixi-display.js" type="text/javascript"></script>
</head>
<style>
* { padding:0; margin:0; }
html { height: 100%; width: 100%; }
body { width:100%; height:100%; min-height:100%; background:black; /*cursor: url('i/curvy/Normal.cur'), default;*/ }
canvas {}
</style>
<body>
<!--Pixitron Engine!™ Lost Astronaut's Pixijs+Electron Game Engine Hello World!-->
<!-- All of the Node.js APIs are available in this renderer process. -->
<script>
console.log("We are using Node.js"+process.versions.node+", Chromium "+process.versions.chrome+", PixiJS and Electron "+process.versions.electron+".");
console.log("Firing up renderer... ESC key to quit! Ctrl-R to reload, Shift-Ctrl-I to toggle dev console.");
// You can also require other files to run in this process
require('./renderer.js')
</script>
</body>
</html>