tracer/src/Types/ReachPoint.hs
2018-07-30 14:34:46 +02:00

19 lines
299 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
| Computer
deriving (Eq, Show)