aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/index.html
blob: bbf13e633e0b1b2876818f72dd2e723817b9e1d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
  <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>