-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
41 lines (34 loc) · 1.34 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
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Haciendas</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/picnic">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<style>
body {
background-color: black;
color: white;
}
html, body, pre, code, kbd, samp {
font-family: "Press Start 2P";
}
</style>
</head>
<body>
<div id="game"></div>
<script type='text/javascript'>
// Global objects.
let globalNetwork
let globalEth // TODO attach this...eth
let DEBUG = false
</script>
<script src="https://cdn.jsdelivr.net/npm/@portis/[email protected]/umd/index.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/[email protected]/dist/phaser.js"></script>
<script src="https://cdn.ethers.io/lib/ethers-5.0.umd.min.js" type="application/javascript"></script>
<script src="https://cdn.jsdelivr.net/gh/ethereum/[email protected]/dist/web3.min.js" type="application/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.3.1/socket.io.slim.min.js" integrity="sha512-tj7TsH/mhgmfzJFXDAyYrVZbGz1tjT6/eglLxP5S7wvHz4XkTWqST0Ldx+oEWyre43PU0hlncsxCh+1u81QW9A==" crossorigin="anonymous"></script>
<script type="module" src="js/main.js"></script>
</body>
</html>