-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
45 lines (40 loc) · 1.74 KB
/
game.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
<!DOCTYPE html>
<html>
<head>
<title>Paradox</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="/styles/login.css" />
<link href="/styles/global.css" type="text/css" rel="stylesheet" />
<link href="/styles/TitleScreen.css" type="text/css" rel="stylesheet">
<link href="/styles/hud.css" type="text/css" rel="stylesheet" />
<link href="/styles/TextMessage.css" type="text/css" rel="stylesheet" />
<link href="/styles/SceneTransition.css" type="text/css" rel="stylesheet" />
<link href="/styles/PauseMenu.css" type="text/css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="/styles/QuestionMessage.css" />
</head>
<body>
<div class="game-container">
<canvas class="game-canvas" width="352" height="198"></canvas>
</div>
<!-- Scripts -->
<script src="/utils.js"></script>
<script src="/DirectionInput.js"></script>
<script src="/PauseMenu.js"></script>
<script src="/TitleScreen.js"></script>
<script src="/Overworld.js"></script>
<script src="/GameObject.js"></script>
<script src="/Person.js"></script>
<script src="/Sprite.js"></script>
<script src="/OverworldMap.js"></script>
<script src="/OverworldEvent.js"></script>
<script src="/TextMessage.js"></script>
<script src="/QuestionMessage.js"></script>
<script src="/KeyPressListener.js"></script>
<script src="/RevealingText.js"></script>
<script src="/SceneTransition.js"></script>
<script src="/init.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@supabase/supabase-js"></script>
</body>
</html>