@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
11 lines • 366 B
TypeScript
/**
* 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
*/
export type ResourceAccessKind = number;
export namespace ResourceAccessKind {
let Read: number;
let Write: number;
let Create: number;
}
//# sourceMappingURL=ResourceAccessKind.d.ts.map