tracer/src/Types/ReachPoint.hs
2018-06-08 00:29:46 +02:00

17 lines
275 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
deriving (Eq, Show)