Module:ShipInfo
Revision as of 07:14, 14 December 2014 by com>Ckwng (Explicitly get args)
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)
return ShipInfoKai:Infobox(args["name"], args["model"])
end
return ShipInfo