24 lines
312 B
JavaScript
24 lines
312 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";
|
|
}
|
|
|
|
this.widget = function()
|
|
{
|
|
return "";
|
|
}
|
|
} |