-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
29 lines (27 loc) · 985 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">
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="scripts/lib/lain.js"></script>
<script type="text/javascript" src="scripts/lain.library.js"></script>
<script type="text/javascript" src="scripts/paradise.js"></script>
<script type="text/javascript" src="scripts/client.js"></script>
<script type="text/javascript" src="scripts/vessel.js"></script>
<script type="text/javascript" src="scripts/action.js"></script>
<link rel="stylesheet" type="text/css" href="./links/main.css"/>
<title>Paradise</title>
</head>
<body style='padding:30px'>
<script>
const lain = new Lain(lainLibrary)
const paradise = new Paradise()
const client = new Client(paradise)
client.install()
window.addEventListener('load', () => {
client.start(1);
})
</script>
</body>
</html>