diff options
Diffstat (limited to 'desktop/sources/scripts/programs/g.js')
-rw-r--r-- | desktop/sources/scripts/programs/g.js | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/desktop/sources/scripts/programs/g.js b/desktop/sources/scripts/programs/g.js deleted file mode 100644 index 2358537..0000000 --- a/desktop/sources/scripts/programs/g.js +++ /dev/null @@ -1,16 +0,0 @@ -'use strict' - -function program_G (x, y) { - Program_Default.call(this, x, y) - - this.name = 'generator' - this.glyph = 'g' - - this.ports = [{ x: 0, y: 1, output: true }, { x: 0, y: 0, bang: true }] - - this.operation = function () { - if (!this.bang()) { return } - - pico.program.add(this.x, this.y + 1, 'd') - } -} |