-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplay.html
45 lines (38 loc) · 1.21 KB
/
play.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
41
42
43
44
45
<!doctype html>
<html>
<head>
<title>Vorple</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="interpreter/roboto.css">
<link rel="stylesheet" type="text/css" href="interpreter/jquery.powertip.css">
<link rel="stylesheet" type="text/css" href="interpreter/toastr.css">
<link rel="stylesheet" type="text/css" href="interpreter/vex.css">
<link rel="stylesheet" type="text/css" href="interpreter/vex-theme-plain.css">
<link rel="stylesheet" type="text/css" href="interpreter/haven.css">
<link rel="stylesheet" type="text/css" href="interpreter/vorple.css">
</head>
<body>
<main id="vorple">
<div id="loader">
<h2 id="loader-message">Loading scripts</h2>
<div id="spinner">V</div>
</div>
</main>
<script src="interpreter/vorple.min.js"></script>
<script>
vorple.options = {
autosave: false,
engineColors: false,
resource_paths: {
images: "resources/images/",
audio: "resources/audio/"
},
// URL to the game file
story: "test.ulx"
};
vorple.debug.off();
vorple.init();
</script>
</body>
</html>