Allow rewinding after combining items
This commit is contained in:
+7
-1
@@ -125,13 +125,19 @@ data World = World
|
||||
, _gameRooms :: [GameRoom] -- consider using and IntMap
|
||||
, _maybeWorld :: Maybe' World
|
||||
, _rewindWorlds :: [World]
|
||||
, _rewinding :: Bool
|
||||
, _rewinding :: RewindingStatus
|
||||
, _worldClock :: Int
|
||||
, _lSelHammerPosition :: HammerPosition
|
||||
, _worldTerminal :: Maybe' WorldTerminal
|
||||
}
|
||||
data WorldTerminal = WorldTerminal Int [(Int,String)]
|
||||
|
||||
data RewindingStatus
|
||||
= RewindingNow
|
||||
| RewindingLastFrame
|
||||
| NotRewinding
|
||||
deriving (Eq,Ord)
|
||||
|
||||
data SaveSlot = QuicksaveSlot | LevelStartSlot
|
||||
deriving (Eq,Ord)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user