-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 924 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (29 loc) · 924 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
29
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>O Rezo - FPS Raycasting</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<canvas id="gameCanvas" width="800" height="600"></canvas>
<div id="ui-layer">
<div id="hud">
<div id="faith-bar-container">
<div id="faith-label">FÉ</div>
<div id="faith-bar">
<div id="faith-fill"></div>
</div>
</div>
</div>
<div id="game-over" style="display: none;">
<div id="game-over-content">
<h1>Sua alma se perdeu na Caatinga...</h1>
<button id="restart-btn">Rezar Novamente</button>
</div>
</div>
</div>
<script type="module" src="src/main.js"></script>
</body>
</html>