-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 1012 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 1012 Bytes
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
<!DOCTYPE HTML>
<html>
<head>
<title>Игра</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link type="text/css" rel="stylesheet" href="assets/gui/style.css" />
</head>
<body>
<script src="core/jquery-3.2.1.js"></script>
<script src="core/three.js"></script>
<script src="core/MDLLoader.js"></script>
<script src="core/OrbitControls.js"></script>
<script src="core/GameObject.js"></script>
<script src="core/MMORPG.js"></script>
<div id="playerFrame">
<div id="name"><div></div></div>
<div id="health" class="progress"><div class="green"></div></div>
<div id="mana" class="progress"><div class="blue"></div></div>
</div>
<div id="victumFrame">
<div id="name"><div>1</div></div>
<div id="health" class="progress"><div class="green"></div></div>
<div id="mana" class="progress"><div class="blue"></div></div>
</div>
<script src="core/gui.js"></script>
</body>
</html>