• Welcome to the Kancolle Wiki!
  • If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord

Module:ShipInfo

From Kancolle Wiki
Revision as of 13:27, 21 February 2015 by com>Ckwng
Jump to navigation Jump to search

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["name"], args["model"])
end

return ShipInfo