42 lines
1.0 KiB
HTML
42 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="sl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>NovaFarma - 2.5D Survival Game</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
background: #000;
|
|
overflow: hidden;
|
|
font-family: 'Courier New', monospace;
|
|
}
|
|
|
|
#game-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="game-container"></div>
|
|
|
|
<!-- Phaser 3 -->
|
|
<script src="node_modules/phaser/dist/phaser.js"></script>
|
|
|
|
<!-- Game Files -->
|
|
<script src="src/scenes/BootScene.js"></script>
|
|
<script src="src/scenes/PreloadScene.js"></script>
|
|
<script src="src/scenes/GameScene.js"></script>
|
|
<script src="src/game.js"></script>
|
|
</body>
|
|
</html>
|