ronin/scripts/ronin.filter.js
2016-11-14 21:11:48 -08:00

19 lines
264 B
JavaScript

function Filter(element)
{
Module.call(this);
this.active = function(cmd)
{
console.log("Nothing to do.");
}
this.passive = function(cmd)
{
console.log("Nothing to do.");
}
this.hint = function(cmd)
{
return "Filter: ";
}
}