Jump to content

Recommended Posts

Posted

The Params are named this:

--- Gets pseudo-random integer number
---@param minExclusive integer Lower bound (inclusive)
---@param maxExclusive integer Uppwer bound (exclusive)
---@return integer
function GetRandomInt(minExclusive,maxExclusive) end

Should be this:

--- Gets pseudo-random integer number
---@param minInclusive integer Lower bound (inclusive)
---@param maxExclusive integer Uppwer bound (exclusive)
---@return integer
function GetRandomInt(minInclusive,maxExclusive) end

 

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

Terms of Use Privacy Policy