1
0
mirror of https://github.com/Adorable-Catgirl/Zorya-NEO.git synced 2024-09-21 18:58:51 +10:00
Zorya-NEO/mods/io/init.lua
Jane Roxanne 25779bd202 VFS time
2020-03-12 16:01:05 -05:00

31 lines
303 B
Lua

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