aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/lib/u.js
blob: f5551b1c697ab1c8c102d57ad5258c5d176acc06 (plain)
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