-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgameplay.html
More file actions
45 lines (37 loc) · 1.08 KB
/
gameplay.html
File metadata and controls
45 lines (37 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SudoRoom: A Love Story</title>
<link rel="stylesheet" href="web/style.css" />
</head>
<body>
<div id="game">
<!-- Background layers (two stacked for dissolve) -->
<div id="bg-layer">
<img id="bg-back" src="" alt="" />
<img id="bg-front" src="" alt="" />
</div>
<!-- Character sprites -->
<div id="char-layer"></div>
<!-- Dialogue box -->
<div id="dialogue-box">
<div id="char-name"></div>
<div id="dialogue-text"></div>
<div id="click-indicator">Click to continue ▾</div>
</div>
<!-- Menu overlay -->
<div id="menu-overlay"></div>
<!-- Click-to-start overlay (for audio autoplay policy) -->
<div id="start-overlay">
<h1>SudoRoom: A Love Story</h1>
<p>Click to start</p>
</div>
</div>
<a id="back-link" href="index.html">← Back to Title</a>
<!-- Story data must load before engine -->
<script src="web/story.js"></script>
<script src="web/engine.js"></script>
</body>
</html>