UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

13 lines (12 loc) 326 B
/** * How important an asset is. The scale is numerically ascending, higher number = less important, lower number = more important. * This controls what order we load assets in. * @enum {number} */ const AssetLevel = { CRITICAL: 0, HIGH: 1, NORMAL: 2, OPTIONAL: 3 }; export default AssetLevel;