Skip to contents

Replay a recorded game of minesweeper in the current graphics device.

Usage

replay_minesweeper(recording)

Arguments

recording

object of class "minesweeper_recording" returned by play_minesweeper()

Value

recording, invisibly.

Examples

if (FALSE) { # .Platform$OS.type == "unix" && interactive()
x11() # Unix-specific example
recording <- play_minesweeper()
replay_minesweeper(recording)
dev.off()
}