Files
Quick-Cocos2dx-Community/quick/framework/platform/android.lua
2017-04-09 22:07:41 +08:00

11 lines
238 B
Lua

function io.exists(path)
return cc.FileUtils:getInstance():isFileExist(path)
end
function io.readfile(path)
return cc.HelperFunc:getFileData(path)
end
function device.showAlertAndroid(title, message, buttonLabels, listener)
end