before refactor

This commit is contained in:
Peter Cottle 2012-12-25 17:39:31 -08:00
parent ee02aea414
commit bbdaa37abd
5 changed files with 30 additions and 24 deletions

View file

@ -0,0 +1,17 @@
var _ = require('underscore');
var Backbone = require('backbone');
var Main = require('../main');
function InputWaterfall() {
Main.getEvents().on('processCommand', this.process)
};
InputWaterfall.prototype.listen = function() {
Main.getEvents().
};
exports.InputWaterfall = InputWaterfall;