UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

16 lines (15 loc) 211 B
/** * @readonly * @enum {number} */ export const PortDirection = { /** * Incoming (Input) */ In: 0, /** * Outgoing (Output) */ Out: 1, Unspecified: 2 };