Module:ShipInfo

Revision as of 01:33, 23 February 2015 by com>Ckwng

Documentation for this module may be created at Module:ShipInfo/doc

local ShipInfo = {}
local ShipInfoKai = require('Module:ShipInfoKai')
local getArgs = require('Module:GetArgs')

function ShipInfo.Infobox(frame)
	local args = getArgs{frame = frame:getParent()}
	return ShipInfoKai:Infobox(args)
end

return ShipInfo