Files
novafarma/index.html

18 lines
484 B
HTML

<!DOCTYPE html>
<html lang="sl">
<head>
<meta charset="UTF-8">
<title>Nova Farma - Clean Start</title>
<style>
body { margin: 0; background: #000; overflow: hidden; }
canvas { display: block; image-rendering: pixelated; } /* Ohrani ostrino */
</style>
</head>
<body>
<!-- Phaser Library -->
<script src="node_modules/phaser/dist/phaser.js"></script>
<!-- Game Entry -->
<script type="module" src="src/game.js"></script>
</body>
</html>