@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
13 lines • 408 B
TypeScript
export default AssetLevel;
/**
* 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.
*/
type AssetLevel = number;
declare namespace AssetLevel {
let CRITICAL: number;
let HIGH: number;
let NORMAL: number;
let OPTIONAL: number;
}
//# sourceMappingURL=AssetLevel.d.ts.map