- Body SolidWorks v1 → 02_PRODUITS_PHYSIQUES/Microphone/Conception/ - Studio Mic KiCAD (DIYPerks) → 02_PRODUITS_PHYSIQUES/R&D_References/DIY/ - cleanup_ports.sh → 04_INFRA_DEPLOIEMENT/ - mockup_jeu_ux → 11_RECHERCHE_&_LAB/ - Printables → 12_DOCUMENTATION/Imprimables/ - Screenshots, ideas, one.html → _BROUILLON/ - all-talas (23Go) → 13_ARCHIVES/ - Supprimé all-talas.zip (20Go doublon), lock files LibreOffice - Nettoyé .gitignore - Remote → Forgejo (10.0.20.105:3000) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
No EOL
879 B
HTML
24 lines
No EOL
879 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Moteur 2D Top-Down - V2 Tilemap & Caméra</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div id="game-container">
|
|
<canvas id="gameCanvas" width="800" height="600"></canvas>
|
|
|
|
<!-- Modale de documentation cachée par défaut -->
|
|
<div id="ui-modal" class="hidden">
|
|
<div class="modal-content">
|
|
<h2>Documentation</h2>
|
|
<p>Voici la documentation. Vous venez d'interagir avec un Point d'Intérêt (POI). Vous pouvez lire ces informations avant de reprendre votre partie.</p>
|
|
<button id="close-modal-btn">Fermer</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="game.js"></script>
|
|
</body>
|
|
</html> |