-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
49 lines (47 loc) · 1.45 KB
/
main.html
File metadata and controls
49 lines (47 loc) · 1.45 KB
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
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pokemon</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div style="display: flex; column-gap: 1em;">
<canvas id="canvas"></canvas>
<div>
<br>
<h3 style='font-family: dialogue; font-size: 18;'>Stats:</h3>
<span>FPS: </span>
<span id="fpsDisplay"></span>
<br>
<span>Game-State: </span>
<span id="stateDisplay"></span>
<br>
<span>Coordinates: </span>
<span id="coordinatesDisplay"></span>
<br>
<span>Previous-Coordinates: </span>
<span id="prevCoordinatesDisplay"></span>
<br>
<span>Direction: </span>
<span id="directionDisplay"></span>
<br>
<span>Menu:</span>
<span id="menuDisplay"></span>
<br>
<span>> Selected: </span>
<span id="subMenuDisplay"></span>
<br>
<span>Pokemon encountered: </span>
<span id="encounterDisplay"></span>
<br>
<span>Keyboard press: </span>
<span id="inputDisplay"></span>
<br>
</div>
</div>
<div style='font-family: dialogue;'></div>
</body>
<script src="main.js" type="module"> </script>
</html>