24 lines
879 B
HTML
24 lines
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>
|