diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2020-12-28 16:25:19 +0000 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2020-12-28 16:25:19 +0000 |
| commit | 9e886b392fbc6f8dfac1ce8f6943a7a1679bce74 (patch) | |
| tree | 81ff992d818b5aa92090b6c02f5685e08bb6fdab /src/main/kotlin/RaycastContext.kt | |
| parent | f28500d963d6546feda522d7748a0462a568ba28 (diff) | |
| download | kotlin-raycaster-9e886b392fbc6f8dfac1ce8f6943a7a1679bce74.tar.xz kotlin-raycaster-9e886b392fbc6f8dfac1ce8f6943a7a1679bce74.zip | |
Refactor input handling. General cleanup
Diffstat (limited to 'src/main/kotlin/RaycastContext.kt')
| -rw-r--r-- | src/main/kotlin/RaycastContext.kt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/kotlin/RaycastContext.kt b/src/main/kotlin/RaycastContext.kt new file mode 100644 index 0000000..9b4156c --- /dev/null +++ b/src/main/kotlin/RaycastContext.kt @@ -0,0 +1,6 @@ +data class RaycastContext( + val renderer: Renderer, + val camera: Camera, + val map: Map, + val minimap: Minimap +)
\ No newline at end of file |