ronin/scripts/module.js
2016-12-09 05:22:55 -07:00

27 lines
383 B
JavaScript

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