diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2020-12-29 20:13:01 +0000 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2020-12-29 20:13:01 +0000 |
| commit | ad192fe7068081ed88f8616581bf450d601e99b1 (patch) | |
| tree | e3cda400065c051ee628dbeb85709f778c90311e /src/main/resources/index.html | |
| parent | e816c727624056b91c5ef5152c3121a7f8497c5b (diff) | |
| download | kotlin-raycaster-ad192fe7068081ed88f8616581bf450d601e99b1.tar.xz kotlin-raycaster-ad192fe7068081ed88f8616581bf450d601e99b1.zip | |
Add textures
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> |