Jump to content

Module:Jctint/sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Happy5214 (talk | contribs) at 12:24, 24 December 2013 (Adding exits). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

local mainModule = require "Module:Jctint/core"
local getArgs = require('Module:Arguments').getArgs

function p.locations(frame)
	local args = getArgs(frame)
	return mainModule.locations(args)
end

function p.units(frame)
	local args = getArgs(frame)
	return mainModule.units(args)
end

function p.destinations(frame)
	local args = getArgs(frame)
	return mainModule.destinations(args)
end

function p.place(frame)
	local args = getArgs(frame)
	return mainModule.place(args)
end

function p.exits(frame)
	local args = getArgs(frame)
	return mainModule.exits(args)
end

return p