1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
'use strict' const FnBase = require('./_base') function FnU (pico, x, y) { FnBase.call(this, pico, x, y) this.name = 'idle' this.glyph = 'u' this.info = '[TODO]Nothing..' this.operation = function () { } } module.exports = FnU