mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 23:01:09 +02:00
- apps/bauntown: Developer community website (Astro landing) - apps/presi: Presentation project - games/voxel-lava: Voxel lava game (SvelteKit) - games/whopixels: Whopixels game 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
779 B
HTML
25 lines
779 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>WhoPixels - Pixel Game</title>
|
|
<link rel="stylesheet" href="css/style.css">
|
|
</head>
|
|
<body>
|
|
<div id="game-container"></div>
|
|
|
|
<!-- Phaser Library -->
|
|
<script src="https://cdn.jsdelivr.net/npm/phaser@3.55.2/dist/phaser.min.js"></script>
|
|
|
|
<!-- Game Data -->
|
|
<script src="data/npc_characters.js"></script>
|
|
|
|
<!-- Game Scripts -->
|
|
<script src="js/scenes/BootScene.js"></script>
|
|
<script src="js/scenes/MainMenuScene.js"></script>
|
|
<script src="js/scenes/GameScene.js"></script>
|
|
<script src="js/scenes/RPGScene.js"></script>
|
|
<script src="js/main.js"></script>
|
|
</body>
|
|
</html>
|