-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
29 lines (29 loc) · 958 Bytes
/
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
27
28
29
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Skele2D Example — Webpack Usage</title>
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="https://code.getmdl.io/1.1.3/material.indigo-pink.min.css">
<script src="https://code.getmdl.io/1.1.3/material.min.js"></script>
</head>
<body>
<style>
html, body {
padding: 0;
margin: 0;
border: 0;
height: 100%;
overflow: hidden;
background: black;
}
</style>
<!-- TODO: only include if in NW.js -->
<script src="node_modules/nw-dev/lib/dev.js" data-ignore="world.json|animations/*.json|*.md"></script>
<!-- TODO: load these as modules as well (keep everything versioned with npm) -->
<script src="lib/uuid.js"></script>
<script src="lib/seedrandom.min.js"></script>
<script src="lib/simplex-noise.min.js"></script>
<script src="build/bundle.js"></script>
</body>
</html>