aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeanne-Kamikaze <jeannekamikaze@gmail.com>2012-09-28 14:38:20 +0200
committerJeanne-Kamikaze <jeannekamikaze@gmail.com>2012-09-28 14:38:20 +0200
commit46f7cfcedc02739519b23d483f9b91fa3af5e0bf (patch)
treeb53f1495b2662f6454dcebaa0c885d31a98cf1ac
parent10ee9bccea3051e087455fc41fd3c485e0051529 (diff)
Changed setCollisioner arguments order
-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.