Some cleanup, sidetracked from inter-room placements

This commit is contained in:
2021-11-12 14:16:16 +00:00
parent 1d5b2ea765
commit 67e164c830
13 changed files with 160 additions and 116 deletions
+6 -4
View File
@@ -8,15 +8,17 @@ defaultRoom :: Room
defaultRoom = Room
{ _rmPolys = []
, _rmLinks = []
, _rmUsedLinks = []
, _rmPos = []
, _rmPath = []
, _rmPmnts = []
, _rmPartialPmnts = IM.empty
, _rmLabelledPmnts = IM.empty
, _rmPmnts = []
, _rmTriggerPmnts = IM.empty
, _rmTriggers = IM.empty
, _rmBound = []
, _rmFloor = []
, _rmName = "defaultRoom"
, _rmShift = (V2 0 0 , 0)
, _rmViewpoints = []
, _rmRandPSs = []
, _rmLabel = Nothing
, _rmTakeFrom = Nothing
}
+2 -1
View File
@@ -39,7 +39,8 @@ defaultWorld = World
, _blocks = IM.empty
, _machines = IM.empty
, _doors = IM.empty
, _coordinates = IM.empty
, _coordinates = IM.empty
, _triggers = IM.empty
, _wallsZone = Zone IM.empty
, _floorItems = IM.empty
, _floorTiles = []