R/create_player.R

Defines functions create_player

Documented in create_player

#' Create a player
#'
#' @param x x coordinate
#' @param y y coordinate
#' @param size size
#' @return
#' @export
create_player <- function(x = 1, y = 1, size = 1) {
  list(x = x, y = y, size = size)
}
informalr/snackman documentation built on March 31, 2021, 2:39 a.m.