witchday/index.html

28 lines
880 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/global.css">
<link rel="stylesheet" href="styles/TextMessage.css">
<title>witchday</title>
</head>
<body>
<div class="game-container">
<canvas class="game-canvas" width="352" height="198"></canvas>
</div>
<script src="/utils.js"></script>
<script src="/DirectionInput.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="/KeyPressListener.js"></script>
2024-08-06 15:55:14 +00:00
<script src="/RevealingText.js"></script>
<script src="/init.js"></script>
</body>
</html>