UNPKG

@beetpx/beetpx

Version:

A TypeScript framework for pixel art browser games.

4 lines 158 B
export function rand(minInclusive, maxExclusive) { return minInclusive + Math.random() * (maxExclusive - minInclusive); } //# sourceMappingURL=rand.js.map