Module:SkillList

From Eco - English Wiki
Revision as of 06:33, 9 December 2024 by StalEF (talk | contribs)

This module provides the back end functionality of the Template:SkillList.

If the template is passed, this module creates a list using details from the following Modules:


local p = {}

-- Main entry point for the Module
function p.main()
   	
    -- load lists
    local skillData = require( "Module:SkillData" )
	local skillList = ''

	
	
return skillList
end

return p