Module:Imahero/test: Difference between revisions

From Heroes 3 wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:
local p = {} --p stands for package
local p = {} --p stands for package


local direction = 'left'
function p.test( frame )
 
     return frame
function p.left( frame )
     return lang:getArrow( direction )
end
end


return p
return p

Revision as of 01:45, 15 March 2021

See usage on user:imahero/test.


local p = {} --p stands for package

function p.test( frame )
    return frame
end

return p