2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-29 15:51:57 +00:00
Files
OpenAssetTools/tools/scripts/platform.lua

8 lines
157 B
Lua

-- Platform functions
function ExecutableByOs(name)
if os.host() == "windows" then
return name .. ".exe"
else
return name
end
end