add missing imports
This commit is contained in:
parent
5a15be6eef
commit
d095569911
2 changed files with 4 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
||||||
module Classes.Physics.Collectable where
|
module Classes.Physics.Collectable where
|
||||||
|
|
||||||
|
import Classes.Physics.Collidible (Collidible)
|
||||||
|
|
||||||
-- | All kinds of Effects present in the game
|
-- | All kinds of Effects present in the game
|
||||||
data Effect
|
data Effect
|
||||||
= HealthUp
|
= HealthUp
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
{-# LANGUAGE ExistentialQuantification #-}
|
{-# LANGUAGE ExistentialQuantification #-}
|
||||||
module Types.Tangible where
|
module Types.Tangible where
|
||||||
|
|
||||||
|
import Classes.Physics.Collectable (Collectable)
|
||||||
|
|
||||||
data Tangible = forall a . Collectable a => Tangible a
|
data Tangible = forall a . Collectable a => Tangible a
|
||||||
|
|
Loading…
Reference in a new issue