Map textures added to rules

This commit is contained in:
Mathieu 2020-03-31 15:50:06 +02:00
parent bf9f525d58
commit 4fe4cc66c3
2 changed files with 7 additions and 0 deletions

View File

@ -45,6 +45,9 @@
Wall : Wall :
<div id="wallList"></div> <div id="wallList"></div>
Map :
<div id="mapList"></div>
<br> <br>
<a href=# id="menuBtn">Go back to menu</a> <a href=# id="menuBtn">Go back to menu</a>
</div> </div>

View File

@ -133,6 +133,10 @@ function showRulesScreen() {
// Display all wall // Display all wall
wallList.appendChild(imgWall); wallList.appendChild(imgWall);
// Display map texture
mapList.appendChild(imgGrass);
mapList.appendChild(imgIce);
} }