summaryrefslogtreecommitdiff
path: root/src/Game/Internal
diff options
context:
space:
mode:
authorandromeda <andromeda@lenovo>2026-02-07 17:37:05 +0100
committerandromeda <andromeda@lenovo>2026-02-07 17:37:05 +0100
commit5474012f893debd21eb1f84aa7390ea9c6eeafd2 (patch)
tree6a4b2f3ebadbff595ca844e1c8698df98a208479 /src/Game/Internal
parent2a3c9bdafb22f0ee5353c8ca7761e897b09f1e83 (diff)
hypercubes but actually
Diffstat (limited to 'src/Game/Internal')
-rw-r--r--src/Game/Internal/Types.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Game/Internal/Types.hs b/src/Game/Internal/Types.hs
index b8e7229..61173db 100644
--- a/src/Game/Internal/Types.hs
+++ b/src/Game/Internal/Types.hs
@@ -11,7 +11,7 @@
module Game.Internal.Types
( Object (..),
toGLMatrix,
- Model (camera, objects, cursorDeltaPos, cursorPos, program, keys, wprop),
+ Model (camera, objects, cursorDeltaPos, cursorPos, keys, program, wprop),
mkModel,
Camera (camPos, camPitch, camYaw, camReference, mouseSensitivity, camVel, strafeStrength, jumpStrength, hasJumped, airTime),
mkCamera,
@@ -70,7 +70,6 @@ data Model = Model
keys :: [GLFW.Key],
-- | draw calls
objects :: [Object],
- -- | shader program
program :: GL.Program,
wprop :: WorldProperties
}