UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

20 lines (15 loc) 324 B
/** * * @enum {string} */ export const ProcessState = { New: "new", Initializing: "initializing", Initialized: "initialized", Finalizing: "finalizing", Finalized: "finalized", Starting: "starting", Running: "running", Stopping: "stopping", Stopped: "stopped" };