UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

9 lines 254 B
/** * Number of bytes in a single Gigabyte * * NOTE: Single gigabyte value takes up 30 bits, maximum addressable 32 bit value is 4Gb(-1) * @type {number} * @example * 100 * GIGABYTE // 100 Gb */ export const GIGABYTE = 1024 * 1024 * 1024;