1
0
mirror of https://github.com/Adorable-Catgirl/Zorya-NEO.git synced 2024-09-21 10:48:50 +10:00
Zorya-NEO/mods/io/init.lua

31 lines
303 B
Lua
Raw Normal View History

2020-03-13 08:01:05 +11:00
local vfs = krequire("zorya").loadmod("vfs")
local io = {}
local hand = {}
local hands = {}
function io.open(path, mode)
end
function io.remove(path)
end
function io.mkdir(path)
end
function io.move(path, newpath)
end
function io.isreadonly(path)
end
function io.exists(path)
end
return io