forked from ruby0x1/realtime-multiplayer-in-html5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (24 loc) · 860 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
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<title> Real time multi-player games with HTML5</title>
<!-- Load style sheet -->
<link href="index.css" media="screen" rel="stylesheet" type="text/css">
<!-- Library code -->
<!-- Load socket.io client side contents. -->
<script src="/socket.io/socket.io.js"></script>
<!-- Load the GUI rendering library code. -->
<script type="text/javascript" src="lib/dat.gui.min.js"></script>
<!-- Load the keyboard specific code -->
<script type="text/javascript" src="lib/keyboard.js"></script>
<!-- Game code -->
<!-- Load the common game code. -->
<script type="text/javascript" src="game.core.js"></script>
<!-- Finally, Load the game client code. -->
<script type="text/javascript" src="client.js"></script>
</head>
<body>
<canvas id="viewport">
</canvas>
</body>
</html>