UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

21 lines (20 loc) 400 B
export class Operation { /** * * @param {OperationType} operator * @param {Array} operands * @constructor */ constructor(operator, operands) { /** * * @type {OperationType} */ this.operator = operator; /** * * @type {Array} */ this.operands = operands; } }