tracer/src/Types/ReachPoint.hs

15 lines
220 B
Haskell
Raw Normal View History

2018-04-14 16:43:05 +00:00
module Types.ReachPoint where
import Linear (V2(..))
data ReachPoint = ReachPoint
{ pointType :: PointType
, pointCoord :: V2 Int
}
deriving (Show)
data PointType
= RoomExit
| Table
deriving (Eq, Show)