# Nice
module.exports = class Util

  # inclusive, integers only
  @randomInt: (min, max) ->
    Math.round Math.random() * (max - min) + min

  # inclusiveo
  @randomFloat: (min, max) ->
    Math.random() * (max - min) + min

