tracer/src/Types/ReachPoint.hs
2018-07-21 06:43:26 +02:00

18 lines
286 B
Haskell

module Types.ReachPoint where
import Linear (V2(..))
import Types.Direction
data ReachPoint = ReachPoint
{ pointType :: PointType
, pointCoord :: V2 Int
, pointDir :: Direction
}
deriving (Eq, Show)
data PointType
= RoomExit
| Table
| Copier
deriving (Eq, Show)