diff options
Diffstat (limited to 'src/main/resources/index.html')
| -rw-r--r-- | src/main/resources/index.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/resources/index.html b/src/main/resources/index.html index 787422b..bbf13e6 100644 --- a/src/main/resources/index.html +++ b/src/main/resources/index.html @@ -3,8 +3,15 @@ <head> <meta charset="UTF-8"> <title>Kotlin Raycaster</title> + <style> + .texture-definition { + display: none + } + </style> </head> <body> + <img id="1" src="textures/wolf/wall1.png" data-width="64" data-height="64" class="texture-definition"> + <img id="2" src="textures/wolf/wood1.png" data-width="64" data-height="64" class="texture-definition"> <script src="kotlin-raycaster.js"></script> </body> </html> |