R/init_game.forced_yatzy.R

Defines functions init_game.forced_yatzy

# Game constructor for public domain variation
# AS per https://en.wikipedia.org/wiki/Yatzy

init_game.forced_yatzy <- function(game, no_rolls_allowed) {

  game <- init_game.yatzy(game, no_rolls_allowed)
  game$title <- "Forced Yatzy"

  return(game)

}
JerBoon/yahtzR documentation built on Oct. 30, 2019, 7:39 p.m.