-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (32 loc) · 1.03 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Three Days</title>
<!-- Custom css -->
<link rel="stylesheet" href="./style.css" >
</head>
<body>
<div id="content">
<div class="header" >
<h1 >Three Days</h1>
<p>Game takes a while to load.</p>
</div>
<canvas class="emscripten" id="canvas" oncontextmenu="event.preventDefault()"></canvas>
</div>
<script type='text/javascript'>
var Module = {
TOTAL_MEMORY: 268435456,
errorhandler: null, // arguments: err, url, line. This function must return 'true' if the error is handled, otherwise 'false'
compatibilitycheck: null,
dataUrl: "Release/Build.data",
codeUrl: "Release/Build.js",
memUrl: "Release/Build.mem",
};
</script>
<script src="Release/UnityLoader.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" ></script>
<script src="./script.js"></script>
</body>
</html>