feat: initialize project with core dependencies and game entry point
This commit is contained in:
25
index.html
Normal file
25
index.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Horror Game</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="game-container"></div>
|
||||
|
||||
<div id="ui-layer">
|
||||
<div id="start-screen">
|
||||
<h1>ECHOES</h1>
|
||||
<p>Click to Start</p>
|
||||
<p class="controls">WASD to Move | Mouse to Look | E to Interact</p>
|
||||
</div>
|
||||
<div id="hud" style="display: none;">
|
||||
<div id="battery">Battery: <span id="battery-level">100%</span></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="module" src="/src/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user