UNPKG

platform-pixels-level-generator

Version:

A command line tool used to generate levels

19 lines (14 loc) 267 B
"use strict"; class Square { constructor (type, meta) { this.type = type; this.meta = meta || {}; } is (type) { return this.type === type; } isnt (type) { return !this.is(type); } } module.exports = Square;