ronin/scripts/modules/module.js
2016-12-18 21:23:53 -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 "";
}
}