Nothing
#' Replay a Minesweeper Recording
#'
#' Replay a recorded game of minesweeper in the current graphics device.
#'
#' @param recording object of class "minesweeper_recording" returned by
#' [play_minesweeper()]
#' @returns `recording`, invisibly.
#' @examplesIf .Platform$OS.type == "unix" && interactive()
#' x11() # Unix-specific example
#' recording <- play_minesweeper()
#' replay_minesweeper(recording)
#' dev.off()
#' @export
replay_minesweeper <- function(recording) {
replay(recording, save_to_gif = FALSE)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.