This commit is contained in:
2026-01-30 09:01:41 +01:00
parent 0b11bc7f7d
commit 9cd7115989
798 changed files with 7667 additions and 0 deletions

28
nova farma/index.html Normal file
View File

@@ -0,0 +1,28 @@
<!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: unique; /* or pixelated */
}
</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>