aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Spear/Scene/GameObject.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Spear/Scene/GameObject.hs b/Spear/Scene/GameObject.hs
index 07b91fd..d98299c 100644
--- a/Spear/Scene/GameObject.hs
+++ b/Spear/Scene/GameObject.hs
@@ -242,8 +242,8 @@ setAxis ax go = go { axis = ax }
242 242
243 243
244-- | Set the game object's collisioners. 244-- | Set the game object's collisioners.
245setCollisioners :: GameObject -> [Collisioner] -> GameObject 245setCollisioners :: [Collisioner] -> GameObject -> GameObject
246setCollisioners go cols = go { collisioners = cols } 246setCollisioners cols go = go { collisioners = cols }
247 247
248 248
249-- | Set the game object's window. 249-- | Set the game object's window.