ronin/scripts/ronin.module.js
Devine Lu Linvega 5cc654cd6d Added hints.
2016-11-14 15:54:11 -08:00

17 lines
232 B
JavaScript

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