jin.path = jin.path or {} 

-- Game root directory.
jin.cwd = jin.args['cwd'] or '.' 

-- Get full path of a given path.
function jin.path.full(path)
    return jin.cwd .. '/' .. path
end