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