class Mod_Util < Vrobot4::Module::Module Vrobot4::Module.add_module_type self, "Utilities" def initialize super() register :testf, "Test function." end def testf m, argv puts "test function run", m, argv end end ## EOF