UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

12 lines (11 loc) 290 B
/** * Note that values correspond to shifted specific 1 bit mask, * this is intentional to allow you to encode complex access pattern into a single integer value * @readonly * @enum {number} */ export const ResourceAccessKind = { Read: 1, Write: 2, Create: 4 };