Add check to cylinder segment collision, break rocket projectiles

This commit is contained in:
2025-10-12 00:26:48 +01:00
parent 8245115763
commit 33de1f79b6
9 changed files with 147 additions and 91 deletions
+4
View File
@@ -9,6 +9,10 @@ class ShortShow a where
instance ShortShow a => ShortShow (V2 a) where
shortShow (V2 x y) = shortShow x ++ "#" ++ shortShow y
instance ShortShow a => ShortShow (V3 a) where
shortShow (V3 x y z) = shortShow x ++ "#" ++ shortShow y
++ "#" ++ shortShow z
newtype ShortString = SString String
instance ShortShow ShortString where