此模块的文档可以在模块:PlayStatus/doc创建
local p = {}
function p.getPlayStatus(statusType)
if (statusType == 'DEEP') then
return '深度'
elseif (statusType == 'FINISH') then
return '通关'
elseif (statusType == 'ABANDON') then
return '弃坑'
else
return '未定义'..statusType
end
end
return p