-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (46 loc) · 1.48 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
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="fr">
<head>
<link rel="stylesheet" type="text/css" href="styles/core.css" />
<link rel="stylesheet" type="text/css" href="styles/game.css" />
<link rel="stylesheet" type="text/css" href="templates/checker/styles.css" />
<link rel="stylesheet" type="text/css" href="templates/tcg/styles.css" />
<link rel="stylesheet" type="text/css" href="templates/rpg/styles.css" />
<link rel="stylesheet" type="text/css" href="templates/triple-triad/styles.css" />
<link rel="stylesheet" type="text/css" href="templates/fight/styles.css" />
<script type="module" src="src/main.js"></script>
<title>SWGPU Playground</title>
<link rel="icon" href="textures/favicon.ico">
<link rel="icon" type="image/jpeg" href="textures/favicon.png" />
<style>
h1 {
margin-bottom:10px;
}
center {
margin-bottom:10px;
}
</style>
</head>
<body>
<div id="BRAND">
<div id="BRAND_TITLE">SWGPU</div>
<div id="BRAND_METRICS">
<span>Version: <b>1.6.3</b></span>
<br/>
<span>FPS: <b id="fps"></b>
<br/>
<span>3D Renderer Time: <b id="rt"></b>
<br/>
<span>Licence: <b>MIT</b></span>
</div>
</div>
<div id="APP" style="margin: 0 auto">
<div id="APP_FAIL"></div>
<canvas id="CANVAS_3D" width="1px" height="1px"></canvas>
<canvas id="CANVAS_2D" width="1px" height="1px"></canvas>
<div id="UI_ROOT"></div>
<div id="UI_FADELAYER"></div>
<div id="UI_OVERLAYER"></div>
</div>
</body>
</html>