Cleanup and various bugfixes
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
module Dodge.RoomPos where
|
||||
import Dodge.LevelGen.Data
|
||||
import Geometry
|
||||
|
||||
extractRoomPos :: RoomPos -> (Point2,Float)
|
||||
extractRoomPos rp = case rp of
|
||||
OutLink _ p a -> (p,a)
|
||||
InLink p a -> (p,a)
|
||||
UnusedLink p a -> (p,a)
|
||||
PosPl p a -> (p,a)
|
||||
LabPos _ rp' -> extractRoomPos rp'
|
||||
Reference in New Issue
Block a user