ronin/scripts/module.js
2016-11-16 15:51:30 -08:00

19 lines
259 B
JavaScript

function Module()
{
this.parameters = [];
this.active = function(cmd)
{
console.log("Nothing to do.");
}
this.passive = function(cmd)
{
console.log("Nothing to do.");
}
this.hint = function(cmd)
{
return "unknown";
}
}