Redo PathFrom name change

This commit is contained in:
2022-07-01 18:48:33 +01:00
parent 516cc6d29e
commit 4d1f1547bc
4 changed files with 16 additions and 16 deletions
+3 -3
View File
@@ -61,12 +61,12 @@ data RPLinkStatus
| UnusedLink { _rplsType :: S.Set RoomLinkType }
| NotLink
deriving (Eq,Ord,Show)
data PathEdge = PathFromEdge CardinalPoint Int
data PathFromEdge = PathFromEdge CardinalPoint Int
deriving (Eq,Ord,Show)
data RoomPosType
= RoomPosOnPath {_onPathEdges :: S.Set PathEdge}
| RoomPosOffPath {_offPathEdges :: S.Set PathEdge}
= RoomPosOnPath {_onPathFromEdges :: S.Set PathFromEdge}
| RoomPosOffPath {_offPathFromEdges :: S.Set PathFromEdge}
| RoomPosExLink
| RoomPosLab Int
deriving (Eq,Ord,Show)