mirror of
https://github.com/u0u0/Quick-Cocos2dx-Community.git
synced 2026-05-13 09:18:58 +08:00
11 lines
238 B
Lua
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
|